HHH-8960 Removal of old svn tags in test code

This commit is contained in:
Hardy Ferentschik 2014-02-12 17:13:42 +01:00
parent bf611d4e18
commit d9a4e094a4
3 changed files with 10 additions and 49 deletions

View File

@ -1,43 +1,20 @@
//$Id: Customer.java 7858 2005-08-11 21:46:58Z epbernard $
package org.hibernate.test.idclass;
public class Customer {
public Customer() {
super();
}
public Customer(String orgName, String custName, String add) {
this.orgName = orgName;
this.customerName = custName;
this.address = add;
}
private String orgName;
private String customerName;
private String address;
public Customer() {
super();
}
public Customer(String orgName, String custName, String add) {
this.orgName = orgName;
this.customerName = custName;
this.address = add;
}
public String getAddress() {
@ -45,47 +22,34 @@ public class Customer {
}
public void setAddress(String address) {
this.address = address;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getOrgName() {
return orgName;
}
public void setOrgName(String orgName) {
this.orgName = orgName;
}
}

View File

@ -1,9 +1,9 @@
//$Id: CustomerId.java 7239 2005-06-20 09:44:54Z oneovthafew $
package org.hibernate.test.idclass;
import java.io.Serializable;
public class CustomerId implements Serializable {
private String orgName;
private String customerName;
@ -31,5 +31,4 @@ public class CustomerId implements Serializable {
public void setOrgName(String orgName) {
this.orgName = orgName;
}
}

View File

@ -1,7 +1,5 @@
//$Id: FavoriteCustomer.java 7858 2005-08-11 21:46:58Z epbernard $
package org.hibernate.test.idclass;
/**
* @author Emmanuel Bernard
*/