ManageableResource.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.console.manager.interfaces; /** * Identify a resource that can be managed. Used by the plugin manager to * determine to which resources are the plugins associated * * @see * * @author <a href="mailto:sacha.labourey@cogito-info.ch">Sacha Labourey</a>. * @version $Revision: 1.4 $ * * <p><b>Revisions:</b> * * <p><b>December 16, 2002 Sacha Labourey:</b> * <ul> * <li> First implementation </li> * </ul> */ public interface ManageableResource extends java.io.Serializable { public String getId(); }
ManageableResource.java |