api/src/main/java/org/apache/unomi/api/Metadata.java [156:184]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Set<String> getTags() {
        return tags;
    }

    /**
     * Sets the tags.
     *
     * @param tags the tag ids
     */
    public void setTags(Set<String> tags) {
        this.tags = tags;
    }

    /**
     * Retrieves a set of {@link String} system tag names associated with this Metadata
     *
     * @return a set of {@link String} system tag names associated with this Metadata
     */
    public Set<String> getSystemTags() {
        return systemTags;
    }

    /**
     * Sets the system tags.
     *
     * @param systemTags the system tag ids
     */
    public void setSystemTags(Set<String> systemTags) {
        this.systemTags = systemTags;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



rest/src/main/java/org/apache/unomi/rest/models/RESTActionType.java [61:74]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Set<String> getTags() {
        return tags;
    }

    public void setTags(Set<String> tags) {
        this.tags = tags;
    }

    public Set<String> getSystemTags() {
        return systemTags;
    }

    public void setSystemTags(Set<String> systemTags) {
        this.systemTags = systemTags;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



