Update of /cvsroot/ejtools/libraries/common/src/main/net/sourceforge/ejtools/jmx
In directory usw-pr-cvs1:/tmp/cvs-serv16860/libraries/common/src/main/net/sourceforge/ejtools/jmx
Modified Files:
MBeanAccessor.java
Log Message:
Add access to createMBean and unregisterMBean methods
Index: MBeanAccessor.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/common/src/main/net/sourceforge/ejtools/jmx/MBeanAccessor.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** MBeanAccessor.java 19 Apr 2002 07:04:36 -0000 1.1
--- MBeanAccessor.java 28 Apr 2002 10:18:10 -0000 1.2
***************
*** 70,73 ****
--- 70,95 ----
*/
public Object invoke(ObjectName name, String action, Object[] params, String[] signatures);
+
+
+ /**
+ * Description of the Method
+ *
+ * @param className Description of the Parameter
+ * @param name Description of the Parameter
+ * @param loaderName Description of the Parameter
+ * @param params Description of the Parameter
+ * @param signature Description of the Parameter
+ * @return Description of the Return Value
+ */
+ public ObjectInstance createMBean(java.lang.String className, ObjectName name, ObjectName loaderName, java.lang.Object[] params, java.lang.String[] signature);
+
+
+ /**
+ * Description of the Method
+ *
+ * @param name Description of the Parameter
+ */
+ public void unregisterMBean(ObjectName name);
}
+
|