public Caller[] getAuthorizedManagers(String id, int type)
throws DoesNotExistException, ManageException {
final String creatorID = this._getManagerID(id, type);
if (creatorID == null) {
throw new ManageException("creatorID may not be null");
}
final _Caller caller = this.repr._newCaller();
caller.setIdentity(creatorID);
return new Caller[]{caller};