5.11.2.1.1.1.1.1.1.2.2.7. ExampleObject6SimpleEntity.java

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