1package io.metafactory.codecomposer_reference.entities.simple;
2
3
4/**
5 * ExampleObject5SimpleEntity - Created by MetaFactory: Automation of Software Development
6 */
7public class ExampleObject5SimpleEntity {
8 private String identifier;
9
10 private Long serialVersionUID = 0L;
11
12 private String exampleObject5Attribute;
13
14
15 /**
16 * Getter for property identifier.
17 *
18 * @return value of property identifier
19 */
20 public String getIdentifier() {
21 return this.identifier;
22 }
23
24 /**
25 * Setter for property identifier.
26 *
27 * @param identifier new value of property identifier
28 */
29 public void setIdentifier(final String identifier) {
30 this.identifier = identifier;
31 }
32
33
34 /**
35 * Getter for property exampleObject5Attribute.
36 *
37 * @return value of property exampleObject5Attribute
38 */
39 public String getExampleObject5Attribute() {
40 return this.exampleObject5Attribute;
41 }
42
43 /**
44 * Setter for property exampleObject5Attribute.
45 *
46 * @param exampleObject5Attribute new value of property exampleObject5Attribute
47 */
48 public void setExampleObject5Attribute(final String exampleObject5Attribute) {
49 this.exampleObject5Attribute = exampleObject5Attribute;
50 }
51
52
53}