Examples of HybridRoleManager


Examples of org.wso2.carbon.user.core.hybrid.HybridRoleManager

            log.debug("Started " + System.currentTimeMillis());
        }
        realmConfig.setUserStoreProperties(JDBCRealmUtil.getSQL(realmConfig
                                           .getUserStoreProperties()));
        this.jdbcDataSource = ds;
        hybridRoleManager = new HybridRoleManager(jdbcDataSource, tenantId, realmConfig, jdbcUserRealm);

        if (addInitData) {
            this.addInitialData();
        }
        if (log.isDebugEnabled()) {
View Full Code Here

Examples of org.wso2.carbon.user.core.hybrid.HybridRoleManager

            log.debug("The jdbcDataSource being used by JDBCUserStoreManager :: "
                    + jdbcDataSource.hashCode());
        }
        realmConfig.setUserStoreProperties(JDBCRealmUtil.getSQL(realmConfig
                                           .getUserStoreProperties()));
        hybridRoleManager = new HybridRoleManager(jdbcDataSource, tenantId, realmConfig, jdbcUserRealm);
        this.addInitialData();
        if (log.isDebugEnabled()) {
            log.debug("Ended " + System.currentTimeMillis());
        }
    }
View Full Code Here

Examples of org.wso2.carbon.user.core.hybrid.HybridRoleManager

        }
        if (dataSource == null) {
            throw new UserStoreException("Data Source is null");
        }

        hybridRoleManager = new HybridRoleManager(dataSource, tenantId, realmConfig, userRealm);
        //obtain the ldap connection source that was created in DefaultRealmService.
        this.connectionSource=(LDAPConnectionContext)properties.get(
                UserCoreConstants.LDAP_CONNECTION_SOURCE);

        try {
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.