FileDocCategorySizeDatePackage
Customer.javaAPI DocHibernate 3.2.5917Sat Feb 12 00:27:32 GMT 2005org.hibernate.test.typedonetoone

Customer.java

//$Id: Customer.java 5686 2005-02-12 07:27:32Z steveebersole $
package org.hibernate.test.typedonetoone;

import java.io.Serializable;

/**
 * @author Gavin King
 */
public class Customer implements Serializable {

	private String name;
	private String customerId;
	private Address billingAddress;
	private Address shippingAddress;

	public Address getBillingAddress() {
		return billingAddress;
	}
	public void setBillingAddress(Address billingAddress) {
		this.billingAddress = billingAddress;
	}
	public String getCustomerId() {
		return customerId;
	}
	public void setCustomerId(String customerId) {
		this.customerId = customerId;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public Address getShippingAddress() {
		return shippingAddress;
	}
	public void setShippingAddress(Address shippingAddress) {
		this.shippingAddress = shippingAddress;
	}
}