| java.lang.Object org.mockejb.test.entity.AddressBean
AddressBean | abstract public class AddressBean implements EntityBean(Code) | | |
Method Summary | |
public void | ejbActivate() | public Object | ejbCreate(String street, String city, String state, String zipCode, String country, Person person) | public Object | ejbCreate() | public void | ejbLoad() | public void | ejbPassivate() | public void | ejbPostCreate(String street, String city, String state, String zipCode, String country, Person person) | public void | ejbPostCreate() | public void | ejbRemove() | public void | ejbStore() | abstract public String | getCity() | abstract public String | getCountry() | abstract public long | getId() Returns the PK of this bean. | abstract public Person | getPerson() | abstract public String | getState() | abstract public String | getStreet() | abstract public String | getZipCode() | abstract public void | setCity(String city) | abstract public void | setCountry(String country) | public void | setEntityContext(EntityContext c) | abstract public void | setId(long id) Sets the id of this bean. | abstract public void | setPerson(Person person) | abstract public void | setState(String state) | abstract public void | setStreet(String street) | abstract public void | setZipCode(String zipCode) | public void | unsetEntityContext() |
ejbActivate | public void ejbActivate()(Code) | | |
ejbCreate | public Object ejbCreate() throws CreateException(Code) | | |
ejbLoad | public void ejbLoad()(Code) | | |
ejbPassivate | public void ejbPassivate()(Code) | | |
ejbPostCreate | public void ejbPostCreate() throws CreateException(Code) | | |
ejbRemove | public void ejbRemove() throws RemoveException(Code) | | |
ejbStore | public void ejbStore()(Code) | | |
getId | abstract public long getId()(Code) | | Returns the PK of this bean.
the unique id of the Address bean |
setCountry | abstract public void setCountry(String country)(Code) | | |
setEntityContext | public void setEntityContext(EntityContext c)(Code) | | |
setId | abstract public void setId(long id)(Code) | | Sets the id of this bean. Container generates and sets it for us,
so this method is not exposed on the business interface.
|
setPerson | abstract public void setPerson(Person person)(Code) | | |
setStreet | abstract public void setStreet(String street)(Code) | | |
setZipCode | abstract public void setZipCode(String zipCode)(Code) | | |
unsetEntityContext | public void unsetEntityContext()(Code) | | |
|
|