Package org.beangle.security.auth.session

Examples of org.beangle.security.auth.session.CategoryProfile


      HttpServletRequest request = ((ServletRequestAware) auth).getRequest();
      if (null == request) {
        return;
      }
      HttpSession session = request.getSession();
      CategoryProfile profile = authenticationManager.getSessionController()
          .getProfileProvider().getCategoryProfile(
              ((UserDetails) auth.getDetails()).getCategory());
      session.setMaxInactiveInterval(profile.getInactiveInterval() * 60);
      ((ServletRequestAware) auth).setRequest(null);
      UserDetails details = (UserDetails) auth.getDetails();
      if (null == details) {
        return;
      }
View Full Code Here

TOP

Related Classes of org.beangle.security.auth.session.CategoryProfile

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.