Package org.apache.jackrabbit.rmi.server.principal

Examples of org.apache.jackrabbit.rmi.server.principal.ServerPrincipal


    public RemotePrincipal getRemotePrincipal(final Principal principal) throws RemoteException {
        if (principal instanceof Group) {
            return new ServerGroup((Group) principal, this);
        }

        return new ServerPrincipal(principal, this);
    }
View Full Code Here


    public RemotePrincipal getRemotePrincipal(final Principal principal) throws RemoteException {
        if (principal instanceof Group) {
            return new ServerGroup((Group) principal, this);
        }

        return new ServerPrincipal(principal, this);
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.rmi.server.principal.ServerPrincipal

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.