KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jfox > jndi > JNDIHandler


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.jndi;
8
9 import org.jfox.ioc.connector.Container;
10 import org.jfox.ioc.connector.AbstractHandler;
11
12 /**
13  * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>
14  */

15
16 public class JNDIHandler extends AbstractHandler{
17
18     public JNDIHandler(Container container) {
19         super(container);
20     }
21
22     public Class JavaDoc getInvocationClass() {
23         return JNDIInvocation.class;
24     }
25
26     public static void main(String JavaDoc[] args) {
27
28     }
29 }
30
Popular Tags