Package maqetta.server.orion.authentication.ldap.LdapAuthenticationService

Examples of maqetta.server.orion.authentication.ldap.LdapAuthenticationService.LoginResult


    String pathInfo = req.getPathInfo() == null ? "" : req.getPathInfo(); //$NON-NLS-1$

    if (pathInfo.startsWith("/form")) { //$NON-NLS-1$
      try {
        LoginResult authResult = LdapAuthenticationService.performAuthentication(req, resp);
        if (authResult == LoginResult.OK) {
          // redirection from
          // FormAuthenticationService.setNotAuthenticated
          String versionString = req.getHeader("Orion-Version"); //$NON-NLS-1$
          Version version = versionString == null ? null : new Version(versionString);
View Full Code Here

TOP

Related Classes of maqetta.server.orion.authentication.ldap.LdapAuthenticationService.LoginResult

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.