Package org.apache.syncope.core.persistence.beans

Examples of org.apache.syncope.core.persistence.beans.AbstractMapping


        final Set<String> vattrToBeRemoved = new HashSet<String>();
        final Set<String> membVattrToBeRemoved = new HashSet<String>();
        final Set<AttributeMod> vattrToBeUpdated = new HashSet<AttributeMod>();

        // Search for all mapped vattrs
        final AbstractMapping umapping = getMapping();
        for (AbstractMappingItem mappingItem : umapping.getItems()) {
            if (mappingItem.getIntMappingType() == IntMappingType.UserVirtualSchema) {
                vattrToBeRemoved.add(mappingItem.getIntAttrName());
            } else if (mappingItem.getIntMappingType() == IntMappingType.MembershipVirtualSchema) {
                membVattrToBeRemoved.add(mappingItem.getIntAttrName());
            }
View Full Code Here

TOP

Related Classes of org.apache.syncope.core.persistence.beans.AbstractMapping

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.