public IdentityObject findIdentityObject(IdentityStoreInvocationContext invocationContext,
String name,
IdentityObjectType identityObjectType) throws IdentityException
{
IdentityObject io = cacheSupport.getFromCache(name, identityObjectType);
if (io == null)
{
io = identityStore.findIdentityObject(invocationContext, name, identityObjectType);
cacheSupport.putIntoCache(io);