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