1 package example.cmp.transaction;2 3 import javax.ejb.CreateException;4 import javax.ejb.EJBLocalHome;5 6 /**7 * Home Interface for the RegistrationSession bean.8 */9 public interface RegistrationSessionHome extends EJBLocalHome {10 11 /**12 * Returns a new RegistrationSessionBean.13 */14 RegistrationSession create()15 throws CreateException;16 17 }18