{
logger.warn(logPrefix + "oid: " + POAUtil.convert(objectId) +
"cannot process request, because object is already in the deactivation process");
}
throw new ObjectNotActive();
}
Servant servant = null;
/* is active servant */
if (isRetain() && (servant = aom.getServant(objectId)) != null)
{
return servant;
}
else if (useDefaultServant())
{
return defaultServant;
}
throw new ObjectNotActive();
}