EJB @Init
Javadoc
The @Init annotation is used to point to the create method of the Home/LocalHome interface of your Session bean.
  @Init
  public MyBean createMe {
  	return new MyBean();
  }