Package org.apache.syncope.types

Examples of org.apache.syncope.types.IntMappingType


    public void retrieveVirAttrValues(final AbstractAttributable owner) {
        final ConfigurableApplicationContext context = ApplicationContextProvider.getApplicationContext();
        final ConnInstanceLoader connInstanceLoader = context.getBean(ConnInstanceLoader.class);

        final IntMappingType type = owner instanceof SyncopeUser
                ? IntMappingType.UserVirtualSchema : IntMappingType.RoleVirtualSchema;

        final AttributableType ownerType = owner instanceof SyncopeUser ? AttributableType.USER : AttributableType.ROLE;

        final Map<String, ConnectorObject> externalResources = new HashMap<String, ConnectorObject>();
View Full Code Here


    public void retrieveVirAttrValues(final AbstractAttributable owner) {
        final ConfigurableApplicationContext context = ApplicationContextProvider.getApplicationContext();
        final ConnInstanceLoader connInstanceLoader = context.getBean(ConnInstanceLoader.class);

        final IntMappingType type = owner instanceof SyncopeUser
                ? IntMappingType.UserVirtualSchema : IntMappingType.RoleVirtualSchema;

        final AttributableType ownerType = owner instanceof SyncopeUser ? AttributableType.USER : AttributableType.ROLE;

        final Map<String, ConnectorObject> externalResources = new HashMap<String, ConnectorObject>();
View Full Code Here

    public AttributableType getType() {
        return type;
    }

    public IntMappingType intMappingType() {
        IntMappingType result;

        switch (type) {
            case ROLE:
                result = IntMappingType.RoleSchema;
                break;
View Full Code Here

        return result;
    }

    public IntMappingType derivedIntMappingType() {
        IntMappingType result;

        switch (type) {
            case ROLE:
                result = IntMappingType.RoleDerivedSchema;
                break;
View Full Code Here

        return result;
    }

    public IntMappingType virtualIntMappingType() {
        IntMappingType result;

        switch (type) {
            case ROLE:
                result = IntMappingType.RoleVirtualSchema;
                break;
View Full Code Here

TOP

Related Classes of org.apache.syncope.types.IntMappingType

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.