| java.lang.Object org.ow2.easybeans.tests.common.ejbs.entity.customer.Address
Address | public class Address implements Serializable(Code) | | The customer address.
author: Gisele Pinheiro Souza author: Eduardo Studzinski Estima de Castro |
Constructor Summary | |
public | Address(long id, String street, String country, int number) Creates a new instance od Address. | public | Address() Creates a new instance of address. |
Address | public Address(long id, String street, String country, int number)(Code) | | Creates a new instance od Address.
Parameters: id - the identifier. Parameters: street - the street. Parameters: country - the country name. Parameters: number - the house number. |
Address | public Address()(Code) | | Creates a new instance of address.
|
getCountry | public String getCountry()(Code) | | Gets the country name.
the country name. |
getId | public long getId()(Code) | | Sets the address identifier.
the identifier. |
getNumber | public int getNumber()(Code) | | Gets the house number.
the number. |
getStreet | public String getStreet()(Code) | | Gets the street name.
the street name. |
setCountry | public void setCountry(String country)(Code) | | Sets the country name.
Parameters: country - the country name. |
setId | public void setId(long id)(Code) | | Sets the address identifier.
Parameters: id - the identifier. |
setNumber | public void setNumber(int number)(Code) | | Sets the house number.
Parameters: number - the house number. |
setStreet | public void setStreet(String street)(Code) | | Sets the street name.
Parameters: street - the street name. |
|
|