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