Package org.jvnet.glassfish.comms.security.auth.impl

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

Related Classes of org.jvnet.glassfish.comms.security.auth.impl.IdentityAuthenticator

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.