1 /*2 * EJTools, the Enterprise Java Tools3 *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 method12 *13 * @author Laurent Etiemble14 * @version $Revision: 1.3 $15 * @todo JavaDoc to complete16 */17 public interface MBeanInvokeAccessor18 {19 /**20 * Description of the Method21 *22 * @param action Description of the Parameter23 * @param params Description of the Parameter24 * @param signatures Description of the Parameter25 * @return Description of the Return Value26 * @exception Exception Description of the Exception27 */28 public Object invoke(String action, Object [] params, String [] signatures)29 throws Exception ;30 }31