Examples of IdentityAuthenticator


Examples of org.jvnet.glassfish.comms.security.auth.impl.IdentityAuthenticator

        return;
    }

    public void handleIdentityAuthentication(SipServletRequest request) throws IOException {
        try {
            Principal authPrincipal = new IdentityAuthenticator(identityConfig, principalMapperInstance).authenticate(request, identityAuthRealm);
            if (authPrincipal != null) {
                ((SipServletRequestImpl) request).setUserPrincipal(authPrincipal);
                ((SipServletRequestImpl) request).setUser(authPrincipal.getName());
            }
            return;
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.