Package io.undertow.servlet.handlers.security

Examples of io.undertow.servlet.handlers.security.ServletSingleSignOnAuthenticationMechainism


    }

    @Override
    public void start(StartContext startContext) {
        Host host = this.host.getValue();
        ServletSingleSignOnAuthenticationMechainism mechanism = new ServletSingleSignOnAuthenticationMechainism(this.manager.getValue());
        mechanism.setDomain(this.domain);
        mechanism.setPath(this.path);
        mechanism.setHttpOnly(httpOnly);
        mechanism.setSecure(secure);
        host.registerAdditionalAuthenticationMechanism(AUTHENTICATION_MECHANISM_NAME, mechanism);
    }
View Full Code Here

TOP

Related Classes of io.undertow.servlet.handlers.security.ServletSingleSignOnAuthenticationMechainism

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.