Package org.jboss.security.auth

Examples of org.jboss.security.auth.AuthenticationCacheFlushThread


         authCacheFlushThread.interrupt();
         authCacheFlushThread = null;
      }
      if (SecurityConstantsBridge.defaultCacheFlushPeriod > 0 && authCacheFlushThread == null)
      {
         authCacheFlushThread = new AuthenticationCacheFlushThread(securityMgrMap);
         authCacheFlushThread.start();
      }
   }
View Full Code Here


   public void start()
   {
      // start the authentication cache flush thread
      if (SecurityConstantsBridge.defaultCacheFlushPeriod > 0 && authCacheFlushThread == null)
      {
         authCacheFlushThread = new AuthenticationCacheFlushThread(securityMgrMap);
         authCacheFlushThread.start();
      }
   }
View Full Code Here

TOP

Related Classes of org.jboss.security.auth.AuthenticationCacheFlushThread

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.