Listing 4: Generated bean source file

package com.tricomgroup.beans.v11.session.hello;

import javax.ejb.*;

public class HelloBean implements SessionBean {
 private SessionContext ctx;

 public void ejbCreate() throws CreateException
 {
 }

 public void ejbRemove()
 {
 }

 public void ejbPassivate()
 {
 }

 public void ejbActivate()
 {
 }

 public void setSessionContext(SessionContext ctx)
 {
  this.ctx = ctx;
 }

 public String sayHello(String name)
 {
  return "Hello " + (name == null ? "World" : name);
 }
}
— End of Listing —