Package ejava.examples.jndidemo
Interface Scheduler
-
- All Known Subinterfaces:
AidSchedulerLocal,AidSchedulerRemote,BakeSchedulerRemote,CookLocal,HospitalLocal,HospitalRemote,TrainSchedulerRemote
- All Known Implementing Classes:
AidSchedulerEJB,BakeSchedulerEJB,CookEJB,HospitalEJB,SchedulerBase,TrainSchedulerEJB
public interface SchedulerThis interface defines some key debug methods we need to inspect the Session Beans that we are configuring.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCtxProperty(String name)return the toString() of the object at the given Context.lookup nameStringgetEnv()return a string representation of java:comp/envStringgetJndiProperty(String name)return the toString() of the object at the given JNDI nameStringgetName()return the name of the bean
-
-
-
Method Detail
-
getName
String getName()
return the name of the bean
-
getJndiProperty
String getJndiProperty(String name)
return the toString() of the object at the given JNDI name
-
getCtxProperty
String getCtxProperty(String name)
return the toString() of the object at the given Context.lookup name
-
getEnv
String getEnv()
return a string representation of java:comp/env
-
-