All Examples  All EJB Examples  This Package

Class examples.ejb.subclass.ChildBean


examples.ejb.subclass.ParentBean

    |

    +----examples.ejb.subclass.ChildBean


public class ChildBean
extends ParentBean
ChildBean is a stateless SessionBean. This bean illustrates:


Constructor Index

 o ChildBean()
 

Method Index

 o childOnlyMethod()
Returns a message identifying the method.
 o sayHello()
Returns a message identifying the method.

Constructor Detail

 o ChildBean

public ChildBean()

Method Detail

 o childOnlyMethod

public java.lang.String childOnlyMethod()
          Returns a message identifying the method. This method is unique to the ChildBean.
Returns:
String Message
 o sayHello

public java.lang.String sayHello()
          Returns a message identifying the method. This method is inherited and overloaded by the Child bean.
Returns:
String Message
Overrides:
sayHello in class ParentBean


All Examples  All EJB Examples  This Package