5.11.2.1.1.1.1.1.1.2.2.3. ExampleObject2SimpleEntity.java

Listing 5.121 java/io/metafactory/codecomposer_reference/entities/simple/ExampleObject2SimpleEntity.java
 1package io.metafactory.codecomposer_reference.entities.simple;
 2
 3
 4/**
 5 * ExampleObject2SimpleEntity -  Created by MetaFactory: Automation of Software Development
 6 */
 7public class ExampleObject2SimpleEntity {
 8    private String identifier;
 9
10    private Long serialVersionUID = 2L;
11
12    private Long exampleCounter1 = 1L;
13
14    private Long exampleCounter2 = 0L;
15
16    private Long exampleCounter3;
17
18
19    /**
20     * Getter for property identifier.
21     *
22     * @return value of property identifier
23     */
24    public String getIdentifier() {
25        return this.identifier;
26    }
27
28    /**
29     * Setter for property identifier.
30     *
31     * @param identifier new value of property identifier
32     */
33    public void setIdentifier(final String identifier) {
34        this.identifier = identifier;
35    }
36
37
38    /**
39     * Getter for property exampleCounter1.
40     *
41     * @return value of property exampleCounter1
42     */
43    public Long getExampleCounter1() {
44        return this.exampleCounter1;
45    }
46
47    /**
48     * Setter for property exampleCounter1.
49     *
50     * @param exampleCounter1 new value of property exampleCounter1
51     */
52    public void setExampleCounter1(final Long exampleCounter1) {
53        this.exampleCounter1 = exampleCounter1;
54    }
55
56
57    /**
58     * Getter for property exampleCounter2.
59     *
60     * @return value of property exampleCounter2
61     */
62    public Long getExampleCounter2() {
63        return this.exampleCounter2;
64    }
65
66    /**
67     * Setter for property exampleCounter2.
68     *
69     * @param exampleCounter2 new value of property exampleCounter2
70     */
71    public void setExampleCounter2(final Long exampleCounter2) {
72        this.exampleCounter2 = exampleCounter2;
73    }
74
75
76    /**
77     * Getter for property exampleCounter3.
78     *
79     * @return value of property exampleCounter3
80     */
81    public Long getExampleCounter3() {
82        return this.exampleCounter3;
83    }
84
85    /**
86     * Setter for property exampleCounter3.
87     *
88     * @param exampleCounter3 new value of property exampleCounter3
89     */
90    public void setExampleCounter3(final Long exampleCounter3) {
91        this.exampleCounter3 = exampleCounter3;
92    }
93
94
95}