Package org.apache.jackrabbit.core.security.authentication

Examples of org.apache.jackrabbit.core.security.authentication.ImpersonationCallback


                            .getPrincipal().getName());
                    return;
                }
            } else if (cb instanceof ImpersonationCallback) {
                Credentials creds = getCredentials();
                ImpersonationCallback impersonationCallback = (ImpersonationCallback) cb;
                if (creds instanceof TrustedCredentials) {
                    impersonationCallback
                            .setImpersonator(((TrustedCredentials) creds)
                                    .getImpersonator());
                    return;
                }
            }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.core.security.authentication.ImpersonationCallback

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.