KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jfox > ioc > ext > RemoteComponent


1 /* JFox, the OpenSource J2EE Application Server
2  *
3  * Distributable under GNU LGPL license by gun.org
4  * more details please visit http://www.huihoo.org/jfox
5  */

6
7 package org.jfox.ioc.ext;
8
9 import org.jfox.ioc.Component;
10
11 /**
12  * 可以远程访问的 Component,但是不一定要实现 Remote 接口,
13  * ioc提供一个Connector来统一远程调用RemoteComponent
14  *
15  *
16  * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>
17  */

18
19 public interface RemoteComponent extends Component {
20
21 }
22
Popular Tags