Example #1
0
 /**
  * Initialized auth service global attributes
  *
  * @throws SMSException if it fails to get auth service for name
  * @throws SSOException if admin <code>SSOToken</code> is not valid
  * @throws Exception
  */
 private void initAuthServiceGlobalSettings() throws SMSException, SSOException, Exception {
   ServiceSchemaManager scm =
       new ServiceSchemaManager(ISAuthConstants.AUTH_SERVICE_NAME, ssoAuthSession);
   revisionNumber = scm.getRevisionNumber();
   if (debug.messageEnabled()) {
     debug.message("revision number = " + revisionNumber);
   }
   updateAuthServiceGlobals(scm);
   new AuthConfigMonitor(scm);
 }