155156157158159160161
checkNotNullArgument(groupName, "Group name"); checkNotNullArgument(groupType, "Group type"); checkObjectName(groupName); checkObjectName(groupType); return new GroupId(groupName, groupType).getId(); }
9192939495969798
} public RoleQueryBuilder setGroup(String id) { checkNotNullArgument(id, "Group id"); this.group = new SimpleGroup(new GroupId(id)); return this; }
119120121122123124125
} } protected Group createGroupFromId(String id) { return new SimpleGroup(new GroupId(id)); }
126127128129130131132133134135136
protected IdentityType createIdentityTypeFromId(String id) { if (GroupId.validateId(id)) { GroupId groupId = new GroupId(id); return new SimpleGroup(groupId); } else {