1 | public class MoreCrazyIdFieldNameStuffEntity {↵ | | 1 | public class Person {↵
|
2 | ↵ | | 2 | ↵
|
3 | private Long moreCrazyIdFieldNameStuffEntity;↵ | | 3 | private ↵
|
4 | private HeresAnotherCrazyIdFieldName heresAnotherCrazyIdFieldName; // silly ain't it ;)↵ | | |
|
5 | private String name;↵ | | |
|
|
6 | public MoreCrazyIdFieldNameStuffEntity() {↵ | | |
|
7 | }↵ | | |
|
|
8 | public MoreCrazyIdFieldNameStuffEntity↵ | | 4 | String name;↵
|
| | | 5 | private String employeeId;↵
|
| | | 6 | private Employee employee;↵
|
|
| | | 7 | public Person() {}↵
|
9 | (String name) {↵ | | 8 | public Person(String name) {↵
|
10 | this.name = name;↵ | | 9 | this.name = name;↵
|
11 | }↵ | | 10 | }↵
|
| | | 11 | ↵
|
12 | public Long getMoreCrazyIdFieldNameStuffEntity() {↵ | | 12 | public ↵
|
13 | return moreCrazyIdFieldNameStuffEntity↵ | | 13 | Employee getEmployee() {↵
|
14 | ;↵ | | 14 | return employee;↵
|
15 | }↵ | | 15 | }↵
|
| | | 16 | ↵
|
16 | public void setMoreCrazyIdFieldNameStuffEntity(Long moreCrazyIdFieldNameStuffEntity) {↵ | | 17 | public void set↵
|
17 | this.moreCrazyIdFieldNameStuffEntity = moreCrazyIdFieldNameStuffEntity↵ | | 18 | Employee(Employee employee) {↵
|
18 | ;↵ | | 19 | this.employee = employee;↵
|
19 | }↵ | | 20 | }↵
|
| | | 21 | ↵
|
20 | public HeresAnotherCrazyIdFieldName getHeresAnotherCrazyIdFieldName() {↵ | | 22 | public ↵
|
21 | return heresAnotherCrazyIdFieldName↵ | | 23 | String getEmployeeId() {↵
|
22 | ;↵ | | 24 | return employeeId;↵
|
23 | }↵ | | 25 | }↵
|
| | | 26 | ↵
|
24 | public void setHeresAnotherCrazyIdFieldName(HeresAnotherCrazyIdFieldName heresAnotherCrazyIdFieldName) {↵ | | 27 | public void set↵
|
25 | this.heresAnotherCrazyIdFieldName = heresAnotherCrazyIdFieldName↵ | | 28 | EmployeeId(String employeeId) {↵
|
26 | ;↵ | | 29 | this.employeeId = employeeId;↵
|
27 | }↵ | | 30 | }↵
|
| | | 31 | ↵
|
28 | public String getName() {↵ | | 32 | public String getName() {↵
|
29 | return name;↵ | | 33 | return name;↵
|
30 | }↵ | | 34 | }↵
|
| | | 35 | ↵
|
31 | public void setName(String name) {↵ | | 36 | public void setName(String name) {↵
|
32 | this.name = name;↵ | | 37 | this.name = name;↵
|
33 | | | 38 |
|