1 23 24 26 27 package com.sun.enterprise.management.monitor; 28 29 import java.util.Map ; 30 31 import javax.management.ObjectName ; 32 import javax.management.MBeanServer ; 33 34 import com.sun.appserv.management.base.XTypes; 35 import com.sun.appserv.management.base.Util; 36 import com.sun.appserv.management.base.AMX; 37 import com.sun.appserv.management.monitor.EJBModuleMonitor; 38 39 import com.sun.appserv.management.util.jmx.JMXUtil; 40 41 public class EJBModuleMonitorImpl 42 extends MonitoringImplBase 43 { 45 46 public EJBModuleMonitorImpl() 47 { 48 super( EJBModuleMonitor.J2EE_TYPE ); 49 } 50 51 52 53 56 protected final ObjectName 57 preRegisterModifyName( 58 final MBeanServer server, 59 final ObjectName nameIn ) 60 { 61 final ObjectName superName = super.preRegisterModifyName( server, nameIn ); 62 63 return fixEJBModuleName( superName, AMX.NAME_KEY ); 64 } 65 } 66 67 68 69 70 71 72 73 | Popular Tags |