Package hirondelle.web4j.security

Examples of hirondelle.web4j.security.LoginTasks


  void reactToNewLogins(HttpServletRequest aRequest) throws AppException {
    HttpSession session = aRequest.getSession(DO_NOT_CREATE);
    if ( sessionExists(session) ){
      if( userHasLoggedIn(aRequest) ){
        LoginTasks loginTasks = BuildImpl.forLoginTasks();
        if(! loginTasks.hasAlreadyReacted(session)){
          fLogger.fine("New login detected.");
          loginTasks.reactToUserLogin(session, aRequest);         
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of hirondelle.web4j.security.LoginTasks

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.