/* 320 */ MBeanServer server = MBeanServerLocator.locateJBoss();
/* 321 */ String name = config.name();
/* 322 */ if ((name == null) || (name.trim().length() == 0))
/* 323 */ name = "jboss.cache:service=EJB3SFSBClusteredCache";
/* 324 */ ObjectName cacheON = new ObjectName(name);
/* 325 */ CacheJmxWrapperMBean mbean = (CacheJmxWrapperMBean)MBeanProxyExt.create(CacheJmxWrapperMBean.class, cacheON, server);
/* 326 */ this.cache = mbean.getCache();
/* */
/* 328 */ this.cacheNode = new Fqn(new Object[] { this.ejbContainer.getDeploymentQualifiedName() });
/* */
/* 331 */ this.region = this.cache.getRegion(this.cacheNode, true);
/* 332 */ EvictionPolicyConfig epc = getEvictionPolicyConfig((int)config.idleTimeoutSeconds(), config.maxSize());