1 /*2 * Generated by XDoclet - Do not edit!3 */4 package test.dao;5 6 /**7 * Data Access Object interface for CustomerBMP.8 * @xdoclet-generated at 16-04-059 * @copyright The XDoclet Team10 * @author XDoclet11 * @version 1.2.312 */13 public interface CustomerDAO14 {15 public void init();16 17 public void load(test.interfaces.CustomerPK pk, test.ejb.CustomerBMPBean ejb) throws javax.ejb.EJBException ;18 public void store(test.ejb.CustomerBMPBean ejb) throws javax.ejb.EJBException ;19 public void remove(test.interfaces.CustomerPK pk) throws javax.ejb.RemoveException , javax.ejb.EJBException ;20 21 public test.interfaces.CustomerPK create(test.ejb.CustomerBMPBean ejb) throws javax.ejb.CreateException , javax.ejb.EJBException ;22 23 public java.util.Collection findAll() throws javax.ejb.FinderException ;24 25 public test.interfaces.CustomerPK findByPrimaryKey(test.interfaces.CustomerPK pk) throws javax.ejb.FinderException ;26 27 public void backup(test.interfaces.CustomerPK pk) ;28 29 }30