Package org.cyclop.web.webapp

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

Related Classes of org.cyclop.web.webapp.CyclopWebSession

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.