1 17 18 package org.apache.catalina.mbeans; 19 20 21 import javax.management.MBeanException ; 22 import javax.management.RuntimeOperationsException ; 23 24 import org.apache.tomcat.util.modeler.BaseModelMBean; 25 26 27 39 40 public class ClassNameMBean extends BaseModelMBean { 41 42 43 45 46 55 public ClassNameMBean() 56 throws MBeanException , RuntimeOperationsException { 57 58 super(); 59 60 } 61 62 63 65 66 70 public String getClassName() { 71 72 return (this.resource.getClass().getName()); 73 74 } 75 76 77 } 78 | Popular Tags |