KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > jmx > MBeanInvokeAccessor


1 /*
2  * EJTools, the Enterprise Java Tools
3  *
4  * Distributable under LGPL license.
5  * See terms of license at www.gnu.org.
6  */

7 package org.ejtools.jmx;
8
9
10 /**
11  * Tag interface to be implemented by object that provides access to MBean invoke method
12  *
13  * @author Laurent Etiemble
14  * @version $Revision: 1.3 $
15  * @todo JavaDoc to complete
16  */

17 public interface MBeanInvokeAccessor
18 {
19    /**
20     * Description of the Method
21     *
22     * @param action Description of the Parameter
23     * @param params Description of the Parameter
24     * @param signatures Description of the Parameter
25     * @return Description of the Return Value
26     * @exception Exception Description of the Exception
27     */

28    public Object JavaDoc invoke(String JavaDoc action, Object JavaDoc[] params, String JavaDoc[] signatures)
29       throws Exception JavaDoc;
30 }
31
Popular Tags