org.jfox.ejb
Class ContainerInvokerSupport

java.lang.Object
  extended byorg.huihoo.jfox.system.ComponentSupport
      extended byorg.huihoo.jfox.system.ServiceSupport
          extended byorg.jfox.ejb.ContainerInvokerSupport
All Implemented Interfaces:
Component, Loggable, Persistentable, java.lang.Runnable, java.io.Serializable, Service
Direct Known Subclasses:
JRMPContainerInvoker, LOCALContainerInvoker

public abstract class ContainerInvokerSupport
extends ServiceSupport

See Also:
Serialized Form

Field Summary
protected static Container container
           
protected static javax.naming.Context ctx
           
protected static java.lang.String INVOKER_JNDI_PREFIX
           
 
Fields inherited from class org.huihoo.jfox.system.ComponentSupport
logger, name, proxyInstance, sequence, state
 
Constructor Summary
ContainerInvokerSupport()
           
 
Method Summary
 void ping()
           
 void run()
          When an object implementing interface Runnable is used to create a thread, starting the thread causes the object's run method to be called in that separately executing thread.
 
Methods inherited from class org.huihoo.jfox.system.ServiceSupport
doStart, doStop, isRunning, start, stop
 
Methods inherited from class org.huihoo.jfox.system.ComponentSupport
destroy, doDestroy, doInit, getLogger, getName, getState, init, parseName, setLogger, setName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.huihoo.jfox.system.Component
destroy, getName, getState, init
 
Methods inherited from interface org.huihoo.jfox.system.Loggable
getLogger
 

Field Detail

INVOKER_JNDI_PREFIX

protected static final java.lang.String INVOKER_JNDI_PREFIX
See Also:
Constant Field Values

ctx

protected static transient javax.naming.Context ctx

container

protected static final Container container
Constructor Detail

ContainerInvokerSupport

public ContainerInvokerSupport()
Method Detail

ping

public void ping()
          throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException

run

public void run()
Description copied from interface: java.lang.Runnable
When an object implementing interface Runnable is used to create a thread, starting the thread causes the object's run method to be called in that separately executing thread.

The general contract of the method run is that it may take any action whatsoever.

See Also:
Thread.run()