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

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


            }
        }
    }

    private void handlePAssertedAuthentication(SipServletRequest request) throws IOException {
        PAssertedAuthenticatorFactory paf = PAssertedAuthenticatorFactory.getInstance();
        PAssertedAuthenticator auth = null;
        if (trustConfigId == null || trustConfigId.length() == 0) {
            auth = (PAssertedAuthenticator) paf.getAuthenticator();
        } else {
            auth = (PAssertedAuthenticator) paf.getAuthenticator(trustConfigId);
        }
        if (auth == null) {
            throw new SecurityException("P-Asserted Authenticator not configured");
        }
View Full Code Here

TOP

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

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.