Fido Alpha 3.2

fido.frontend
Class FidoBean

java.lang.Object
  |
  +--fido.frontend.FidoBean
All Implemented Interfaces:
javax.ejb.EnterpriseBean, java.io.Serializable, javax.ejb.SessionBean

public class FidoBean
extends java.lang.Object
implements javax.ejb.SessionBean

EJB code that implements the FidoRemote interface with concrete methods. The EJB is instantiated by the EJB container.

See Also:
Serialized Form

Constructor Summary
FidoBean()
          Called by the EJB container to create a new FidoBean instance
 
Method Summary
 void ejbActivate()
          Required by the SessionBean interface.
 void ejbCreate()
          Required by the SessionBean interface.
 void ejbPassivate()
          Required by the SessionBean interface.
 void ejbRemove()
          Required by the SessionBean interface.
 java.lang.String fidoString(java.lang.String user)
          Calls the FidoSession class to process the input string from the user.
 void setSessionContext(javax.ejb.SessionContext context)
          Required by the SessionBean interface.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FidoBean

public FidoBean()
Called by the EJB container to create a new FidoBean instance

Method Detail

ejbActivate

public void ejbActivate()
Required by the SessionBean interface. No action taken.

Specified by:
ejbActivate in interface javax.ejb.SessionBean

ejbPassivate

public void ejbPassivate()
Required by the SessionBean interface. No action taken.

Specified by:
ejbPassivate in interface javax.ejb.SessionBean

ejbRemove

public void ejbRemove()
Required by the SessionBean interface. No action taken.

Specified by:
ejbRemove in interface javax.ejb.SessionBean

setSessionContext

public void setSessionContext(javax.ejb.SessionContext context)
Required by the SessionBean interface. Stores the context in which the EJB is running.

Specified by:
setSessionContext in interface javax.ejb.SessionBean
Parameters:
context - SessionContext the EJB is running.

ejbCreate

public void ejbCreate()
Required by the SessionBean interface. No action taken.


fidoString

public java.lang.String fidoString(java.lang.String user)
Calls the FidoSession class to process the input string from the user. FidoSession is the same class the servlet FidoFrontEnd uses.

See Also:
FidoSession.fidoString(String)

Fido Alpha 3.2