Examples of TmpPrincipalProvider


Examples of org.apache.jackrabbit.oak.security.principal.TmpPrincipalProvider

    @Override
    @Nonnull
    public PrincipalManager getPrincipalManager() throws RepositoryException {
        return TODO.unimplemented().returnValue(new PrincipalManagerImpl(
                new TmpPrincipalProvider()));
    }
View Full Code Here

Examples of org.apache.jackrabbit.oak.security.principal.TmpPrincipalProvider

    private final PrincipalProvider principalProvider;

    public LoginContextProviderImpl(ContentRepository repository) {
        // TODO: use configurable authentication config and principal provider
        authConfig = new ConfigurationImpl();
        principalProvider = new TmpPrincipalProvider();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.