1 /* JFox, the OpenSource J2EE Application Server2 *3 * Distributable under GNU LGPL license by gun.org4 * more details please visit http://www.huihoo.org/jfox5 */6 package org.jfox.ioc.ext;7 8 import org.jfox.ioc.Component;9 10 /**11 * 可以被控制台管理的组件,应该实现该接口。12 * <br><br>13 * 注意:该接口只是一个申明接口,实现该接口之后,被管理的方法还必须使用 Managable annotation 注释标记14 *15 * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>16 * @see org.jfox.ioc.annotation.Managable17 */18 19 public interface ManagableComponent extends Component {20 21 }