5.11.2.1.1.1.1.1.1.2.2.8. ExampleObject7SimpleEntity.java

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