It shall be possible to use collections of primitive types when defining domain models as follows: ``` java public interface Article { // ... Set<String> getTags(); } ```