1package io.metafactory.codecomposer_reference.entities.simple;
2
3
4/**
5 * YourFirstObjectSimpleEntity - Created by MetaFactory: Automation of Software Development
6 */
7public class YourFirstObjectSimpleEntity {
8 private String identifier;
9
10 private Long serialVersionUID = 0L;
11
12 private String firstAttribute;
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 firstAttribute.
36 *
37 * @return value of property firstAttribute
38 */
39 public String getFirstAttribute() {
40 return this.firstAttribute;
41 }
42
43 /**
44 * Setter for property firstAttribute.
45 *
46 * @param firstAttribute new value of property firstAttribute
47 */
48 public void setFirstAttribute(final String firstAttribute) {
49 this.firstAttribute = firstAttribute;
50 }
51
52
53}