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 Scheduler
This 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 String
getCtxProperty(String name)
return the toString() of the object at the given Context.lookup nameString
getEnv()
return a string representation of java:comp/envString
getJndiProperty(String name)
return the toString() of the object at the given JNDI nameString
getName()
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
-
-