KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jfox > examples > ejb > timer > TestTimer


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 package org.jfox.examples.ejb.timer;
7
8 import java.rmi.RemoteException JavaDoc;
9 import javax.ejb.EJBObject JavaDoc;
10
11 /**
12  * @author <a HREF="mailto:yy.young@gmail.com">Young Yang</a>
13  */

14
15 public interface TestTimer extends EJBObject JavaDoc {
16
17     void shedule(long time) throws RemoteException JavaDoc;
18
19 }
20
Popular Tags