public static long diag_conglomid_to_containerid(
Object module,
long conglomid)
{
String ret_string = null;
AccessFactory store_module = null;
long container_id = Long.MIN_VALUE;
// Find the AccessFactory
store_module = (AccessFactory)
Monitor.getServiceModule(module, AccessFactory.MODULE);
if (store_module != null)
{
try
{
TransactionController tc =
store_module.getTransaction(
ContextService.getFactory().getCurrentContextManager());
container_id = tc.findContainerid(conglomid);
}
catch (Throwable t)