User: user57 Date: 02/02/14 16:46:57 Modified: src/main/org/jboss/test/jmx/mbeand TestDeployerDMBean.java Log: o Holy changes BatMan... OBJECT_NAME is now an ObjectName everywhere Revision Changes Path 1.2 +21 -22 jbosstest/src/main/org/jboss/test/jmx/mbeand/TestDeployerDMBean.java Index: TestDeployerDMBean.java =================================================================== RCS file: /cvsroot/jboss/jbosstest/src/main/org/jboss/test/jmx/mbeand/TestDeployerDMBean.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- TestDeployerDMBean.java 8 Sep 2001 16:57:05 -0000 1.1 +++ TestDeployerDMBean.java 15 Feb 2002 00:46:57 -0000 1.2 @@ -1,9 +1,10 @@ /* -* JBoss, the OpenSource J2EE server -* -* Distributable under LGPL license. -* See terms of license at gnu.org. -*/ + * JBoss, the OpenSource J2EE server + * + * Distributable under LGPL license. + * See terms of license at gnu.org. + */ + package org.jboss.test.jmx.mbeand; import javax.management.ObjectName; @@ -11,27 +12,25 @@ import org.w3c.dom.Element; import org.w3c.dom.Document; +import org.jboss.util.ObjectNameFactory; + import org.jboss.system.Service; import org.jboss.system.ServiceMBean; + /** -* This is a little class to test deploying jsrs -* -* @author <a href="mailto:[EMAIL PROTECTED]">David Jencks</a> -* -* @version $Revision: 1.1 $ -* -* <p><b>david jencks:</b> -* <ul> -* initial import -* <li> -* </ul> -*/ + * This is a little class to test deploying jsrs + * + * @author <a href="mailto:[EMAIL PROTECTED]">David Jencks</a> + * @version $Revision: 1.2 $ + * + * <p><b>david jencks:</b> + * <ul> + * <li> initial import + * </ul> + */ public interface TestDeployerDMBean -extends Service, ServiceMBean + extends Service, ServiceMBean { - // Public -------------------------------------------------------- - /** The default object name. */ - public static final String OBJECT_NAME = "test:service=TestDeployerD"; - + ObjectName OBJECT_NAME = ObjectNameFactory.create("test:service=TestDeployerD"); }
_______________________________________________ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
