Examples of addHiddenClaim()


Examples of org.wso2.carbon.user.core.profile.ProfileConfiguration.addHiddenClaim()

                    map.put(profileName, profConfig);
                }
                profConfig.setDialectName(dialectUri);
                profConfig.setProfileName(profileName);
                if (behavior == UserCoreConstants.BEHAVIOUR_HIDDEN) {
                    profConfig.addHiddenClaim(claimUri);
                } else if (behavior == UserCoreConstants.BEHAVIOUR_INHERITED) {
                    profConfig.addInheritedClaim(claimUri);
                } else if (behavior == UserCoreConstants.BEHAVIOUR_OVERRIDDEN) {
                    profConfig.addOverriddenClaim(claimUri);
                } else {
View Full Code Here

Examples of org.wso2.carbon.user.core.profile.ProfileConfiguration.addHiddenClaim()

    public static Map<String, ProfileConfiguration> getProfileTestData() {
        Map<String, ProfileConfiguration> map = new HashMap<String, ProfileConfiguration>();
        ProfileConfiguration profConfig = new ProfileConfiguration();
        profConfig.setProfileName(HOME_PROFILE_NAME);
        profConfig.addHiddenClaim(CLAIM_URI1);
        profConfig.addInheritedClaim(CLAIM_URI2);
        profConfig.setDialectName("http://wso2.org/claims");
        map.put(HOME_PROFILE_NAME, profConfig);
        return map;
    }
View Full Code Here

Examples of org.wso2.carbon.user.core.profile.ProfileConfiguration.addHiddenClaim()

    public static Map<String, ProfileConfiguration> getProfileTestData() {
        Map<String, ProfileConfiguration> map = new HashMap<String, ProfileConfiguration>();
        ProfileConfiguration profConfig = new ProfileConfiguration();
        profConfig.setProfileName(HOME_PROFILE_NAME);
        profConfig.addHiddenClaim(CLAIM_URI1);
        profConfig.addInheritedClaim(CLAIM_URI2);
        profConfig.setDialectName("http://wso2.org/");
        map.put(HOME_PROFILE_NAME, profConfig);
        return map;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.