ListGroupsGivenAUserResponseDocument responseDocument = proxy.listGroupsGivenAUser(input);
return responseDocument.getListGroupsGivenAUserResponse().getGroupArray();
}
public String[] listUsers() throws XregistryException {
ListUsersDocument input = ListUsersDocument.Factory.newInstance();
input.addNewListUsers();
ListUsersResponseDocument responseDocument = proxy.listUsers(input);
return responseDocument.getListUsersResponse().getUserArray();
}