1 22 package org.jboss.test.jca.bank.interfaces; 23 24 27 public interface AccountLocalHome extends javax.ejb.EJBLocalHome 28 { 29 public static final String COMP_NAME = "java:comp/env/ejb/AccountLocal"; 30 31 public static final String JNDI_NAME = "LocalAccount"; 32 33 public org.jboss.test.jca.bank.interfaces.AccountLocal create(java.lang.Integer id, int balance, 34 java.lang.Integer customerId) throws javax.ejb.CreateException ; 35 36 public org.jboss.test.jca.bank.interfaces.AccountLocal findByPrimaryKey(java.lang.Integer id) 37 throws javax.ejb.FinderException ; 38 39 public java.util.Collection findByCustomerId(java.lang.Integer customerId) throws javax.ejb.FinderException ; 40 41 } 42 | Popular Tags |