Package org.beangle.security.core.session

Examples of org.beangle.security.core.session.SessionInfo.refreshLastRequest()


            response.flushBuffer();
          }
          return;
        } else {
          // Non-expired - update last request date/time
          info.refreshLastRequest();
        }
      }
    }

    chain.doFilter(request, response);
View Full Code Here


  }

  public void refreshLastRequest(String sessionId) {
    SessionInfo info = getSessionInfo(sessionId);
    if (info != null) {
      info.refreshLastRequest();
    }
  }

  public void register(String sessionId, Authentication authentication) {
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.