1 22 package org.jboss.ejb3.test.manytomany; 23 24 25 26 32 public interface EntityTest 33 { 34 Customer oneToManyCreate() throws Exception ; 35 36 Customer findCustomerById(Long id) throws Exception ; 37 38 Flight manyToOneCreate() throws Exception ; 39 40 Flight findFlightById(Long id) throws Exception ; 41 42 Company findCompanyById(Integer id) throws Exception ; 43 44 void manyToManyCreate() throws Exception ; 45 } 46 | Popular Tags |