1 package org.hibernate.test.idclass; 3 4 import java.io.Serializable ; 5 6 public class CustomerId implements Serializable { 7 8 private String orgName; 9 private String customerName; 10 11 public CustomerId() { 12 super(); 13 } 14 15 public CustomerId(String orgName, String custName) { 16 this.orgName = orgName; 17 this.customerName = custName; 18 } 19 20 public String getCustomerName() { 21 return customerName; 22 } 23 24 public void setCustomerName(String customerName) { 25 this.customerName = customerName; 26 } 27 28 public String getOrgName() { 29 return orgName; 30 } 31 32 public void setOrgName(String orgName) { 33 this.orgName = orgName; 34 } 35 36 } 37 | Popular Tags |