Package it.eng.spagobi.security

Examples of it.eng.spagobi.security.RoleSynchronizer


    }
    logger.debug("SecurityInitializer::init: invoking init method of the portal security initialization class name: '" + portalSecurityInitClassName + "'");
    portalSecurityInit.init(config);
    /*roles syncronizing after tables initialization*/
    logger.debug("SecurityInitializer::init: starting synchronizing roles...");
    RoleSynchronizer synch = new RoleSynchronizer();
    synch.synchronize();
   
    logger.debug("OUT");
  }
View Full Code Here


            "Exception occurred while deleting role",
            e);
      }
    } else if (serviceType != null  && serviceType.equalsIgnoreCase(ROLES_SYNCHRONIZATION)) {
      try {
        RoleSynchronizer roleSynch = new RoleSynchronizer();
        roleSynch.synchronize();
        logger.debug("Roles synchronized");
        JSONObject attributesResponseSuccessJSON = new JSONObject();
        attributesResponseSuccessJSON.put("success", true);
        attributesResponseSuccessJSON.put("responseText", "Operation succeded");
        writeBackToClient( new JSONSuccess(attributesResponseSuccessJSON) );
View Full Code Here

TOP

Related Classes of it.eng.spagobi.security.RoleSynchronizer

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.