1 package ejava.examples.jndidemo.ejb;
2
3 import ejava.examples.jndidemo.Scheduler;
4
5 /**
6 * This interface is part of an EJB example to leverage the XML deployment
7 * descriptor as much as possible. There will be very few annotations within
8 * this set of examples.
9 * @author jcstaff
10 *
11 */
12
13 //@Remote declared by ejb-jar.xml entry
14 public interface AidSchedulerRemote extends Scheduler {
15 }