Package org.apache.jackrabbit.oak.spi.security.authentication.callback

Examples of org.apache.jackrabbit.oak.spi.security.authentication.callback.SecurityProviderCallback


     * {@code LoginModule} or {@code null}.
     */
    @CheckForNull
    protected SecurityProvider getSecurityProvider() {
        if (securityProvider == null && callbackHandler != null) {
            SecurityProviderCallback scb = new SecurityProviderCallback();
            try {
                callbackHandler.handle(new Callback[] {scb});
                securityProvider = scb.getSecurityProvider();
            } catch (UnsupportedCallbackException e) {
                log.debug(e.getMessage());
            } catch (IOException e) {
                log.debug(e.getMessage());
            }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.spi.security.authentication.callback.SecurityProviderCallback

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.