| org.mockejb.test.entity.AddressHome
AddressHome | public interface AddressHome extends javax.ejb.EJBLocalHome(Code) | | |
create | public Address create(String street, String city, String state, String zipCode, String country, Person person) throws CreateException(Code) | | Creates a new instance of the address for the given person.
For this example, we assume that address does not exist w/o a person.
Parameters: street - Parameters: city - Parameters: state - Parameters: zipCode - Parameters: country - Parameters: person - new instance of an Address bean |
|
|