User: user57 Date: 02/02/14 16:46:56 Modified: src/main/org/jboss/test/jmx/mbeana TestDeployerAMBean.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/mbeana/TestDeployerAMBean.java Index: TestDeployerAMBean.java =================================================================== RCS file: /cvsroot/jboss/jbosstest/src/main/org/jboss/test/jmx/mbeana/TestDeployerAMBean.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- TestDeployerAMBean.java 8 Sep 2001 16:57:04 -0000 1.1 +++ TestDeployerAMBean.java 15 Feb 2002 00:46:56 -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.mbeana; 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 TestDeployerAMBean -extends Service, ServiceMBean + extends Service, ServiceMBean { - // Public -------------------------------------------------------- - /** The default object name. */ - public static final String OBJECT_NAME = "test:service=TestDeployerA"; - + ObjectName OBJECT_NAME = ObjectNameFactory.create("test:service=TestDeployerA"); }
_______________________________________________ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
