1package io.metafactory.codecomposer_reference.entities.simple;
2
3
4/**
5 * ExampleObject4SimpleEntity - Created by MetaFactory: Automation of Software Development
6 */
7public class ExampleObject4SimpleEntity {
8 private String identifier;
9
10 private Long serialVersionUID = 0L;
11
12
13 /**
14 * This is an example comment for a reference with any multiplicity: ExampleObject1 exampleObject1.
15 * This is an example comment for a reference with multiplicity 0..1 or 1..1: ExampleObject1 exampleObject1.
16 */
17 private ExampleObject1SimpleEntity exampleObject1;
18
19
20 /**
21 * This is an example comment for a reference with any multiplicity: ExampleObject2 exampleObject2.
22 * This is an example comment for a reference with multiplicity 0..1 or 1..1: ExampleObject2 exampleObject2.
23 * This is an example comment for a reference with meta data bar: ExampleObject2 exampleObject2.
24 */
25 private ExampleObject2SimpleEntity exampleObject2;
26
27
28 /**
29 * This is an example comment for a reference with any multiplicity: ExampleObject3 exampleObject3.
30 * This is an example comment for a reference with multiplicity 0..1 or 1..1: ExampleObject3 exampleObject3.
31 * This is an example comment for a reference with meta data bar: ExampleObject3 exampleObject3.
32 * This is an example comment for a reference with meta data bar with value baz: ExampleObject3 exampleObject3.
33 */
34 private ExampleObject3SimpleEntity exampleObject3;
35
36
37 /**
38 * Getter for property identifier.
39 *
40 * @return value of property identifier
41 */
42 public String getIdentifier() {
43 return this.identifier;
44 }
45
46 /**
47 * Setter for property identifier.
48 *
49 * @param identifier new value of property identifier
50 */
51 public void setIdentifier(final String identifier) {
52 this.identifier = identifier;
53 }
54
55
56 /**
57 * Getter for property exampleObject1.
58 *
59 * @return value of property exampleObject1
60 */
61 public ExampleObject1SimpleEntity getExampleObject1() {
62 return this.exampleObject1;
63 }
64
65 /**
66 * Setter for property exampleObject1.
67 *
68 * @param exampleObject1 new value of property exampleObject1
69 */
70 public void setExampleObject1(final ExampleObject1SimpleEntity exampleObject1) {
71 this.exampleObject1 = exampleObject1;
72 }
73
74
75 /**
76 * Getter for property exampleObject2.
77 *
78 * @return value of property exampleObject2
79 */
80 public ExampleObject2SimpleEntity getExampleObject2() {
81 return this.exampleObject2;
82 }
83
84 /**
85 * Setter for property exampleObject2.
86 *
87 * @param exampleObject2 new value of property exampleObject2
88 */
89 public void setExampleObject2(final ExampleObject2SimpleEntity exampleObject2) {
90 this.exampleObject2 = exampleObject2;
91 }
92
93
94 /**
95 * Getter for property exampleObject3.
96 *
97 * @return value of property exampleObject3
98 */
99 public ExampleObject3SimpleEntity getExampleObject3() {
100 return this.exampleObject3;
101 }
102
103 /**
104 * Setter for property exampleObject3.
105 *
106 * @param exampleObject3 new value of property exampleObject3
107 */
108 public void setExampleObject3(final ExampleObject3SimpleEntity exampleObject3) {
109 this.exampleObject3 = exampleObject3;
110 }
111
112
113}