SimplePlugin.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.console.plugins.helpers; /** * Interface that must be implemented by BeanShell scripts * and used by the the ServletPluginHelper to simulate a real * plugin implementation to the PluginManager * * @see org.jboss.console.plugins.helpers.ServletPluginHelper * * @author <a href="mailto:sacha.labourey@cogito-info.ch">Sacha Labourey</a>. * @version $Revision: 1.4 $ * * <p><b>Revisions:</b> * * <p><b>23 dec 2002 Sacha Labourey:</b> * <ul> * <li> First implementation </li> * </ul> */ public interface SimplePlugin { }
SimplePlugin.java |