1 23 24 29 30 package com.sun.enterprise.management.config; 31 32 import java.util.Map ; 33 34 import javax.management.ObjectName ; 35 36 37 import com.sun.enterprise.management.config.AMXConfigImplBase; 38 import com.sun.enterprise.management.support.Delegate; 39 import com.sun.appserv.management.base.XTypes; 40 41 import com.sun.enterprise.management.support.AMXAttributeNameMapper; 42 43 import com.sun.enterprise.management.support.oldconfig.OldJMSServiceMBean; 44 45 46 49 public final class JMSServiceConfigImpl extends AMXConfigImplBase 50 implements ConfigFactoryCallback 52 { 53 public 54 JMSServiceConfigImpl( final Delegate delegate ) 55 { 56 super( delegate ); 57 } 58 59 60 61 private final OldJMSServiceMBean 62 getOldJMSServiceMBean() 63 { 64 return getOldConfigProxies().getOldJMSServiceMBean( getConfigName() ); 65 } 66 67 private final JMSHostConfigFactory 68 getJMSHostConfigFactory() 69 { 70 return new JMSHostConfigFactory( this, getOldJMSServiceMBean() ); 71 } 72 } 73 74 75 | Popular Tags |