}
protected PAPACE convertACE(org.glite.authz.pap.authz.PAPACE ace){
PAPACE wsACE = new PAPACE();
wsACE.setPrincipal( adminToPrincipal( ace.getAdmin() ) );
if (ace.getPerms() == null)
wsACE.setPermissions( null );
else
wsACE.setPermissions( ace.getPerms().toStringArray() );
return wsACE;
}