Examples of CyclopWebSession


Examples of org.cyclop.web.webapp.CyclopWebSession

  @Override
  protected void onSignInFailed() {
    super.onSignInFailed();

    CyclopWebSession session = (CyclopWebSession) getWebSession();
    Optional<String> lastLoginError = Optional.ofNullable(session.getLastLoginError());

    HttpServletRequest httpReq = getHttpServletRequest();
    Optional<InetAddress> clientIp = getClientIp(httpReq);
    Optional<InetAddress> proxyIp = getProxyIp(httpReq);
    bruteForce.loginFailed(lastLoginError, clientIp, proxyIp);
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.