checkNotNullArgument(attributeName, "Attribute name");
checkNotNullArgument(value, "Attribute value");
IdentityObject io = getRepository().findIdentityObjectByUniqueAttribute(getInvocationContext(),
getIdentityObjectType(groupType),
new SimpleAttribute(attributeName, value));
if (io == null)
{
return null;
}