CacheProperties desc = new CacheProperties(ejbDescriptor);
int idleTimeoutInSeconds = desc.getRemovalTimeoutInSeconds();
//get containerId
long containerId = ejbDescriptor.getUniqueId();
//get clusterId
EJBServerConfigLookup configLookup = new EJBServerConfigLookup(ejbDescriptor);
String clusterId = configLookup.getClusterName();
Map initMap = new HashMap();
initMap.put("idleTimeoutInSeconds", new Integer(idleTimeoutInSeconds));
initMap.put("containerId", new Long(containerId));
initMap.put("clusterId", clusterId);