/* * Hibernate OGM, Domain model persistence for NoSQL datastores * * License: GNU Lesser General Public License (LGPL), version 2.1 or later * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.ogm.backendtck.embeddable; import javax.persistence.Column; import javax.persistence.Embeddable; /** * @author Emmanuel Bernard */ @Embeddable public class Address { private String street1; private String street2; private String city; private String zipCode; private String country; private AddressType type; public String getStreet1() { return street1; } public void setStreet1(String street1) { this.street1 = street1; } public String getStreet2() { return street2; } public void setStreet2(String street2) { this.street2 = street2; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } @Column(name = "postal_code") public String getZipCode() { return zipCode; } public void setZipCode(String zipCode) { this.zipCode = zipCode; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public AddressType getType() { return type; } public void setType(AddressType type) { this.type = type; } @Override public String toString() { return "Address [street1=" + street1 + ", street2=" + street2 + ", city=" + city + ", zipCode=" + zipCode + ", country=" + country + ", type=" + type + "]"; } }