1package io.metafactory.codecomposer_reference.entities.simple;
2
3
4/**
5 * ExampleObject1SimpleEntity - Created by MetaFactory: Automation of Software Development
6 */
7public class ExampleObject1SimpleEntity {
8 private String identifier;
9
10 private Long serialVersionUID = 1L;
11
12 private String exampleAttribute1;
13
14 private transient Long exampleAttribute2;
15
16 private String exampleAttribute3;
17
18 private Long exampleAttribute4;
19
20 private Long exampleAttribute3Baz;
21
22
23 /**
24 * Getter for property identifier.
25 *
26 * @return value of property identifier
27 */
28 public String getIdentifier() {
29 return this.identifier;
30 }
31
32 /**
33 * Setter for property identifier.
34 *
35 * @param identifier new value of property identifier
36 */
37 public void setIdentifier(final String identifier) {
38 this.identifier = identifier;
39 }
40
41
42 /**
43 * Getter for property exampleAttribute1.
44 *
45 * @return value of property exampleAttribute1
46 */
47 public String getExampleAttribute1() {
48 return this.exampleAttribute1;
49 }
50
51 /**
52 * Setter for property exampleAttribute1.
53 *
54 * @param exampleAttribute1 new value of property exampleAttribute1
55 */
56 public void setExampleAttribute1(final String exampleAttribute1) {
57 this.exampleAttribute1 = exampleAttribute1;
58 }
59
60
61 /**
62 * Getter for property exampleAttribute2.
63 *
64 * @return value of property exampleAttribute2
65 */
66 public Long getExampleAttribute2() {
67 return this.exampleAttribute2;
68 }
69
70 /**
71 * Setter for property exampleAttribute2.
72 *
73 * @param exampleAttribute2 new value of property exampleAttribute2
74 */
75 public void setExampleAttribute2(final Long exampleAttribute2) {
76 this.exampleAttribute2 = exampleAttribute2;
77 }
78
79
80 /**
81 * Getter for property exampleAttribute3.
82 *
83 * @return value of property exampleAttribute3
84 */
85 public String getExampleAttribute3() {
86 return this.exampleAttribute3;
87 }
88
89 /**
90 * Setter for property exampleAttribute3.
91 *
92 * @param exampleAttribute3 new value of property exampleAttribute3
93 */
94 public void setExampleAttribute3(final String exampleAttribute3) {
95 this.exampleAttribute3 = exampleAttribute3;
96 }
97
98
99 /**
100 * Getter for property exampleAttribute4.
101 *
102 * @return value of property exampleAttribute4
103 */
104 public Long getExampleAttribute4() {
105 return this.exampleAttribute4;
106 }
107
108 /**
109 * Setter for property exampleAttribute4.
110 *
111 * @param exampleAttribute4 new value of property exampleAttribute4
112 */
113 public void setExampleAttribute4(final Long exampleAttribute4) {
114 this.exampleAttribute4 = exampleAttribute4;
115 }
116
117
118 /**
119 * Getter for property exampleAttribute3Baz.
120 *
121 * @return value of property exampleAttribute3Baz
122 */
123 public Long getExampleAttribute3Baz() {
124 return this.exampleAttribute3Baz;
125 }
126
127 /**
128 * Setter for property exampleAttribute3Baz.
129 *
130 * @param exampleAttribute3Baz new value of property exampleAttribute3Baz
131 */
132 public void setExampleAttribute3Baz(final Long exampleAttribute3Baz) {
133 this.exampleAttribute3Baz = exampleAttribute3Baz;
134 }
135
136
137}