1package io.metafactory.codecomposer_reference.entities.simple;
2
3
4/**
5 * ExampleObject3SimpleEntity - Created by MetaFactory: Automation of Software Development
6 */
7public class ExampleObject3SimpleEntity {
8 private String identifier;
9
10 private Long serialVersionUID = 0L;
11
12
13 /**
14 * Getter for property identifier.
15 *
16 * @return value of property identifier
17 */
18 public String getIdentifier() {
19 return this.identifier;
20 }
21
22 /**
23 * Setter for property identifier.
24 *
25 * @param identifier new value of property identifier
26 */
27 public void setIdentifier(final String identifier) {
28 this.identifier = identifier;
29 }
30
31
32}