Package com.baasbox.security

Examples of com.baasbox.security.ISessionTokenProvider


          try {
            //we MUST use admin/admin because the db was just created
            db = DbHelper.open( BBConfiguration.getAPPCODE(),"admin", "admin");
            DbHelper.setupDb();
            info("Initializing session manager");
            ISessionTokenProvider stp = SessionTokenProvider.getSessionTokenProvider();
            stp.setTimeout(com.baasbox.configuration.Application.SESSION_TOKENS_TIMEOUT.getValueAsInteger()*1000);
          }catch (Throwable e){
          error("!! Error initializing BaasBox!", e);
          error(ExceptionUtils.getFullStackTrace(e));
          throw e;
          } finally {
View Full Code Here

TOP

Related Classes of com.baasbox.security.ISessionTokenProvider

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.