blob: bbde128a013be1c219f1fb7c4313ed1605242457 [file] [log] [blame]
package eclipselink.example.jpa.employee.model;
import javax.annotation.Generated;
import javax.persistence.metamodel.ListAttribute;
import javax.persistence.metamodel.SingularAttribute;
import javax.persistence.metamodel.StaticMetamodel;
@Generated(value="Dali", date="2013-05-08T15:16:26.635-0400")
@StaticMetamodel(Employee.class)
public class Employee_ {
public static volatile SingularAttribute<Employee, Integer> id;
public static volatile SingularAttribute<Employee, String> firstName;
public static volatile SingularAttribute<Employee, Gender> gender;
public static volatile SingularAttribute<Employee, String> lastName;
public static volatile SingularAttribute<Employee, Double> salary;
public static volatile SingularAttribute<Employee, Long> version;
public static volatile SingularAttribute<Employee, Employee> manager;
public static volatile ListAttribute<Employee, Employee> managedEmployees;
public static volatile ListAttribute<Employee, PhoneNumber> phoneNumbers;
public static volatile SingularAttribute<Employee, Address> address;
public static volatile SingularAttribute<Employee, EmploymentPeriod> period;
public static volatile ListAttribute<Employee, String> responsibilities;
}