1 | public class MoreCrazyIdFieldNameStuffEntity {↵ | | 1 | public class Organization {↵
|
2 | private Long moreCrazyIdFieldNameStuffEntity;↵ | | 2 | private long ↵
|
3 | private HeresAnotherCrazyIdFieldName heresAnotherCrazyIdFieldName; // silly ain't it ;)↵ | | |
|
4 | private String name;↵ | | |
|
|
5 | public MoreCrazyIdFieldNameStuffEntity() {↵ | | |
|
6 | }↵ | | |
|
|
7 | public MoreCrazyIdFieldNameStuffEntity↵ | | 3 | id;↵
|
| | | 4 | private String name;↵
|
| | | 5 | private Collection employments;↵
|
|
8 | (String name) {↵ | | 6 | public Organization(String name) {↵
|
9 | this.name = name;↵ | | 7 | this.name = name;↵
|
10 | }↵ | | 8 | ↵
|
|
11 | public Long getMoreCrazyIdFieldNameStuffEntity() {↵ | | |
|
12 | return moreCrazyIdFieldNameStuffEntity;↵ | | |
|
13 | }↵ | | |
|
|
14 | public void setMoreCrazyIdFieldNameStuffEntity(Long moreCrazyIdFieldNameStuffEntity) {↵ | | |
|
15 | this.moreCrazyIdFieldNameStuffEntity = moreCrazyIdFieldNameStuffEntity;↵ | | |
|
16 | }↵ | | |
|
|
17 | public HeresAnotherCrazyIdFieldName getHeresAnotherCrazyIdFieldName() {↵ | | |
|
18 | return heresAnotherCrazyIdFieldName;↵ | | |
|
19 | }↵ | | |
|
|
20 | public void setHeresAnotherCrazyIdFieldName(HeresAnotherCrazyIdFieldName heresAnotherCrazyIdFieldName) {↵ | | |
|
21 | this.heresAnotherCrazyIdFieldName = heresAnotherCrazyIdFieldN↵ | | 9 | employments = new HashSet();↵
|
| | | 10 | }↵
|
|
| | | 11 | public Organization() {}↵
|
|
| | | 12 | /**↵
|
| | | 13 | * @return Returns the employments.↵
|
| | | 14 | */↵
|
| | | 15 | public Collection getEmployments() {↵
|
| | | 16 | return employments;↵
|
| | | 17 | }↵
|
| | | 18 | /**↵
|
| | | 19 | * @param employments The employments to set.↵
|
| | | 20 | */↵
|
| | | 21 | public void setEmployments(Collection employments) {↵
|
| | | 22 | this.employments = employments;↵
|
| | | 23 | }↵
|
| | | 24 | /**↵
|
| | | 25 | * @return Returns the id.↵
|
| | | 26 | */↵
|
| | | 27 | public long getId() {↵
|
| | | 28 | return id;↵
|
| | | 29 | }↵
|
| | | 30 | /**↵
|
| | | 31 | * @param id The id to set.↵
|
| | | 32 | */↵
|
| | | 33 | public void setId(long id) {↵
|
| | | 34 | this.id = id;↵
|
| | | 35 | }↵
|
| | | 36 | /**↵
|
22 | ame;↵ | | 37 | * @return Returns the name.↵
|
23 | }↵ | | 38 | ↵
|
| | | 39 | */↵
|
24 | public String getName() {↵ | | 40 | public String getName() {↵
|
25 | return name;↵ | | 41 | return name;↵
|
26 | }↵ | | 42 | }↵
|
| | | 43 | /**↵
|
| | | 44 | * @param name The name to set.↵
|
| | | 45 | */↵
|
27 | public void setName(String name) {↵ | | 46 | public void setName(String name) {↵
|
28 | this.name = name;↵ | | 47 | this.name = name;↵
|
29 | | | 48 |
|