KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jfox > ioc > connector > Container


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.connector;
8
9 /**
10  * Container 是真正远程调用的载体
11  *
12  * 客户端通过Container接口发起远程调用
13  *
14  * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>
15  */

16
17 public interface Container {
18     /**
19      * 该容器响应的Handler的类型
20      * @return
21      */

22     Class JavaDoc getHandlerClass();
23 }
24
Popular Tags