| SimpleFolderResource.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.console.manager.interfaces.impl;
import org.jboss.console.manager.interfaces.ManageableResource;
/**
* Simple tree folder representation
*
* @see <related>
*
* @author <a href="mailto:sacha.labourey@cogito-info.ch">Sacha Labourey</a>.
* @version $Revision: 1.4 $
*
* <p><b>Revisions:</b>
*
* <p><b>2 janv. 2003 Sacha Labourey:</b>
* <ul>
* <li> First implementation </li>
* </ul>
*/
public class SimpleFolderResource implements ManageableResource
{
protected String folderName = null;
public SimpleFolderResource(String folderName)
{
this.folderName = folderName;
}
public String getId()
{
return this.folderName;
}
}
| SimpleFolderResource.java |