1 | public class MoreCrazyIdFieldNameStuffEntity {↵ | | 1 | public class ↵
|
2 | private Long moreCrazyIdFieldNameStuffEntity;↵ | | |
|
3 | private HeresAnotherCrazyIdFieldName heresAnotherCrazyIdFieldName; // silly ain't it ;)↵ | | 2 | Group {↵
|
| | | 3 | private Long id;↵
|
| | | 4 | private List persons = new ArrayList();↵
|
4 | private String name;↵ | | 5 | private String name;↵
|
|
5 | public MoreCrazyIdFieldNameStuffEntity() {↵ | | 6 | public ↵
|
6 | }↵ | | |
|
|
7 | public MoreCrazyIdFieldNameStuffEntity↵ | | 7 | Group() {↵
|
| | | 8 | }↵
|
|
8 | (String name) {↵ | | 9 | public Group(String name) {↵
|
9 | this.name = name;↵ | | 10 | this.name = name;↵
|
10 | }↵ | | 11 | }↵
|
|
11 | public Long getMoreCrazyIdFieldNameStuffEntity() {↵ | | 12 | public Long get↵
|
12 | return moreCrazyIdFieldNameStuffEntity;↵ | | |
|
13 | }↵ | | |
|
|
14 | public void setMoreCrazyIdFieldNameStuffEntity(Long moreCrazyIdFieldNameStuffEntity) {↵ | | |
|
15 | this.moreCrazyIdFieldNameStuffEntity = moreCrazyIdFieldNameStuffEntity;↵ | | |
|
16 | }↵ | | |
|
|
17 | public HeresAnotherCrazyIdFieldName↵ | | 13 | Id() {↵
|
| | | 14 | return id;↵
|
| | | 15 | }↵
|
|
| | | 16 | public void setId(Long id) {↵
|
| | | 17 | this.id = id;↵
|
| | | 18 | }↵
|
|
18 | getHeresAnotherCrazyIdFieldName() {↵ | | 19 | public List getPersons() {↵
|
19 | return heresAnotherCrazyIdFieldName;↵ | | 20 | return persons;↵
|
20 | }↵ | | 21 | }↵
|
|
21 | public void setHeresAnotherCrazyIdFieldName(HeresAnotherCrazyIdFieldName heresAnotherCrazyIdFieldName) {↵ | | 22 | public void setPersons(List persons) {↵
|
22 | this.heresAnotherCrazyIdFieldName = heresAnotherCrazyIdFieldName;↵ | | 23 | this.persons = persons;↵
|
23 | }↵ | | 24 | }↵
|
|
24 | public String getName() {↵ | | 25 | public String getName() {↵
|
25 | return name;↵ | | 26 | return name;↵
|
26 | }↵ | | 27 | }↵
|
|
27 | public void setName(String name) {↵ | | 28 | public void setName(String name) {↵
|
28 | this.name = name | | 29 | this.name = name
|