Class Address
- java.lang.Object
-
- org.hibernate.testing.orm.domain.animal.Address
-
@Embeddable public class Address extends Object
-
-
Constructor Summary
Constructors Constructor Description Address()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCity()StringgetCountry()StringgetPostalCode()StringgetStreet()voidsetCity(String city)voidsetCountry(String country)voidsetPostalCode(String postalCode)voidsetStreet(String street)
-
-
-
Method Detail
-
getStreet
public String getStreet()
-
setStreet
public void setStreet(String street)
-
getCity
public String getCity()
-
setCity
public void setCity(String city)
-
getPostalCode
public String getPostalCode()
-
setPostalCode
public void setPostalCode(String postalCode)
-
getCountry
public String getCountry()
-
setCountry
public void setCountry(String country)
-
-