Package org.platformlayer.auth

Examples of org.platformlayer.auth.CertificateAuthenticationResponse


      details.certificateChain = certificateChain;
      details.username = username;
      // details.projectKey = projectKey;
      details.challengeResponse = challengeResponse;

      CertificateAuthenticationResponse result = null;
      try {
        result = userAuthenticator.authenticate(details);
      } catch (AuthenticatorException e) {
        log.warn("Error while authenticating by certificate", e);
        throw new IllegalStateException("Error while authenticating by certificate", e);
View Full Code Here

TOP

Related Classes of org.platformlayer.auth.CertificateAuthenticationResponse

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.