FileDocCategorySizeDatePackage
CustomerId.javaAPI DocHibernate 3.2.5672Mon Jun 20 04:44:54 BST 2005org.hibernate.test.idclass

CustomerId

public class CustomerId extends Object implements Serializable

Fields Summary
private String
orgName
private String
customerName
Constructors Summary
public CustomerId()

		super();
	
public CustomerId(String orgName, String custName)

		this.orgName = orgName;
		this.customerName = custName;
	
Methods Summary
public java.lang.StringgetCustomerName()

		return customerName;
	
public java.lang.StringgetOrgName()

		return orgName;
	
public voidsetCustomerName(java.lang.String customerName)

		this.customerName = customerName;
	
public voidsetOrgName(java.lang.String orgName)

		this.orgName = orgName;