return targetStore.createIdentityObject(targetCtx, name, identityObjectType);
}
public IdentityObject createIdentityObject(IdentityStoreInvocationContext invocationCtx, String name, IdentityObjectType identityObjectType, Map<String, String[]> attributes) throws IdentityException
{
IdentityStore targetStore = resolveIdentityStore(identityObjectType);
IdentityStoreInvocationContext targetCtx = resolveInvocationContext(targetStore, invocationCtx);
return targetStore.createIdentityObject(targetCtx, name, identityObjectType, attributes);
}