what is javax.validation.* package in java ee , how to use this with JPA 2.0 ? i want to validate my Enity with @NotNull annotation . my JPA implementation is Hibernate :
public class Employee implements Serializable , EmployeeDetail {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue
private int id;
private String name;
private long salary;
...