Mappings from JPA-mapping-files are considered
[hibernate4-maven-plugin] / src / it / multiple-persistence-units / src / main / java / b / Customer.java
1 package b;
2
3 import java.util.Set;
4 import javax.persistence.Table;
5
6
7 @Table(name = "WRONG_NAME")
8 public class Customer extends Person
9 {
10   public enum CustomerLevel { BRONZE, SILVER, GOLD };
11   private Set<Sale> purchases;
12   private String email;
13   private CustomerLevel level = CustomerLevel.BRONZE;
14 }