1 22 package org.jboss.ejb3.test.composite; 23 24 25 26 32 public interface EntityTest 33 { 34 Customer oneToManyCreate(String name) throws Exception ; 35 36 Customer findCustomerByPk(CustomerPK pk) throws Exception ; 37 38 Flight manyToOneCreate() throws Exception ; 39 40 Flight findFlightById(Long id) throws Exception ; 41 42 void manyToManyCreate() throws Exception ; 43 44 FieldCustomer fieldOneToManyCreate(String name) throws Exception ; 45 46 FieldCustomer fieldFindCustomerByPk(FieldCustomerPK pk) throws Exception ; 47 48 FieldFlight fieldManyToOneCreate() throws Exception ; 49 50 void fieldManyToManyCreate() throws Exception ; 51 52 FieldFlight fieldFindFlightById(Long id) throws Exception ; 53 54 } 55 | Popular Tags |