public Group findGroup(String name, String groupType) throws IdentityException
{
checkNotNullArgument(name, "Group name");
checkNotNullArgument(groupType, "Group type");
IdentityObject io = getRepository().findIdentityObject(getInvocationContext(), name, getIdentityObjectType(groupType));
if (io != null)
{
return createGroup(io);
}