All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.syncope.client.to.AbstractAttributableTO Maven / Gradle / Ivy

/*
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 *  under the License.
 */
package org.syncope.client.to;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.codehaus.jackson.annotate.JsonIgnore;
import org.syncope.client.AbstractBaseBean;

public abstract class AbstractAttributableTO extends AbstractBaseBean {

    private long id;

    private List attributes;

    private List derivedAttributes;

    private Set resources;

    protected AbstractAttributableTO() {
        attributes = new ArrayList();
        derivedAttributes = new ArrayList();
        resources = new HashSet();
    }

    public long getId() {
        return id;
    }

    public void setId(final long id) {
        this.id = id;
    }

    public boolean addAttribute(final AttributeTO attribute) {
        return attributes.add(attribute);
    }

    public boolean removeAttribute(final AttributeTO attribute) {
        return attributes.remove(attribute);
    }

    public List getAttributes() {
        return attributes;
    }

    public void setAttributes(final List attributes) {
        this.attributes = attributes;
    }

    @JsonIgnore
    public Map> getAttributeMap() {
        Map> result =
                new HashMap>(attributes.size());
        for (AttributeTO attributeTO : getAttributes()) {
            result.put(attributeTO.getSchema(), attributeTO.getValues());
        }

        return result;
    }

    public boolean addDerivedAttribute(final AttributeTO derivedAttribute) {
        return derivedAttributes.add(derivedAttribute);
    }

    public boolean removeDerivedAttribute(final AttributeTO derivedAttribute) {
        return derivedAttributes.remove(derivedAttribute);
    }

    public List getDerivedAttributes() {
        return derivedAttributes;
    }

    public void setDerivedAttributes(
            final List derivedAttributes) {

        this.derivedAttributes = derivedAttributes;
    }

    public boolean addResource(final String resource) {
        return resources.add(resource);
    }

    public boolean removeResource(final String resource) {
        return resources.remove(resource);
    }

    public Set getResources() {
        return resources;
    }

    public void setResources(final Set resources) {
        this.resources = resources;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy