FileDocCategorySizeDatePackage
Customer.javaAPI DocHibernate 3.2.5318Tue Dec 05 07:39:12 GMT 2006org.hibernate.test.propertyref.inheritence.union

Customer.java

package org.hibernate.test.propertyref.inheritence.union;

/**
 * @author Gavin King
 */
public class Customer extends Person {
	private String customerId;

	public String getCustomerId() {
		return customerId;
	}

	public void setCustomerId(String customerId) {
		this.customerId = customerId;
	}

}