Package org.zanata.security

Examples of org.zanata.security.DummyAuthenticationMechanism


            ServletContext servletContext) {
        if (!deploymentInfo.getAuthenticationMechanisms().containsKey("SPNEGO")) {
            log.debug("Registering dummy SPNEGO authentication mechanism");
            deploymentInfo.addAuthenticationMechanism("SPNEGO",
                    new ImmediateAuthenticationMechanismFactory(
                            new DummyAuthenticationMechanism()));
        }

        String contextPath = servletContext.getContextPath();

        // workaround for https://issues.jboss.org/browse/WFLY-3744
View Full Code Here

TOP

Related Classes of org.zanata.security.DummyAuthenticationMechanism

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.