Subversion Repositories bacoAlunos

Rev

Rev 1814 | Rev 1841 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1729 jmachado 1
package pt.estgp.estgweb.domain;
1830 jmachado 2
// Generated 4/nov/2017 9:59:25 by Hibernate Tools 3.2.0.b9
1729 jmachado 3
 
4
 
5
import java.util.Date;
6
import java.util.HashSet;
7
import java.util.Set;
8
 
9
/**
10
 * ConfigurationSeparator generated by hbm2java
11
 */
12
public abstract class ConfigurationSeparator extends pt.estgp.estgweb.domain.DomainSerializableObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
13
 
14
 
15
     private long id;
16
     private 5+0%2Fdocs%2Fapi+Date">Date updateDate;
17
     private 5+0%2Fdocs%2Fapi+Date">Date saveDate;
18
     private 1.5.0/docs/api/java/lang/String.html">String name;
19
     private 1.5.0/docs/api/java/lang/String.html">String nameEn;
20
     private 1.5.0/docs/api/java/lang/String.html">String nameEs;
21
     private 1.5.0/docs/api/java/lang/String.html">String nameFr;
22
     private 1.5.0/docs/api/java/lang/String.html">String description;
23
     private boolean active;
1737 jmachado 24
     private 1.5.0/docs/api/java/lang/Integer.html">Integer position;
1729 jmachado 25
     private boolean showInBaco;
26
     private boolean showInPae;
27
     private boolean showStudents;
28
     private boolean showTeachers;
29
     private boolean showWorkers;
1731 jmachado 30
     private PageSectionImpl pageSection;
1729 jmachado 31
     private Set<CourseSchool> schools = new HashSet<CourseSchool>(0);
32
 
33
    public ConfigurationSeparator() {
34
    }
35
 
36
 
37
    public long getId() {
38
        return this.id;
39
    }
40
 
41
    public void setId(long id) {
42
        this.id = id;
43
    }
44
    public 5+0%2Fdocs%2Fapi+Date">Date getUpdateDate() {
45
        return this.updateDate;
46
    }
47
 
48
    public void setUpdateDate(5+0%2Fdocs%2Fapi+Date">Date updateDate) {
49
        this.updateDate = updateDate;
50
    }
51
    public 5+0%2Fdocs%2Fapi+Date">Date getSaveDate() {
52
        return this.saveDate;
53
    }
54
 
55
    public void setSaveDate(5+0%2Fdocs%2Fapi+Date">Date saveDate) {
56
        this.saveDate = saveDate;
57
    }
58
    public 1.5.0/docs/api/java/lang/String.html">String getName() {
59
        return this.name;
60
    }
61
 
62
    public void setName(1.5.0/docs/api/java/lang/String.html">String name) {
63
        this.name = name;
64
    }
65
    public 1.5.0/docs/api/java/lang/String.html">String getNameEn() {
66
        return this.nameEn;
67
    }
68
 
69
    public void setNameEn(1.5.0/docs/api/java/lang/String.html">String nameEn) {
70
        this.nameEn = nameEn;
71
    }
72
    public 1.5.0/docs/api/java/lang/String.html">String getNameEs() {
73
        return this.nameEs;
74
    }
75
 
76
    public void setNameEs(1.5.0/docs/api/java/lang/String.html">String nameEs) {
77
        this.nameEs = nameEs;
78
    }
79
    public 1.5.0/docs/api/java/lang/String.html">String getNameFr() {
80
        return this.nameFr;
81
    }
82
 
83
    public void setNameFr(1.5.0/docs/api/java/lang/String.html">String nameFr) {
84
        this.nameFr = nameFr;
85
    }
86
    public 1.5.0/docs/api/java/lang/String.html">String getDescription() {
87
        return this.description;
88
    }
89
 
90
    public void setDescription(1.5.0/docs/api/java/lang/String.html">String description) {
91
        this.description = description;
92
    }
93
    public boolean isActive() {
94
        return this.active;
95
    }
96
 
97
    public void setActive(boolean active) {
98
        this.active = active;
99
    }
1737 jmachado 100
    public 1.5.0/docs/api/java/lang/Integer.html">Integer getPosition() {
101
        return this.position;
102
    }
103
 
104
    public void setPosition(1.5.0/docs/api/java/lang/Integer.html">Integer position) {
105
        this.position = position;
106
    }
1729 jmachado 107
    public boolean isShowInBaco() {
108
        return this.showInBaco;
109
    }
110
 
111
    public void setShowInBaco(boolean showInBaco) {
112
        this.showInBaco = showInBaco;
113
    }
114
    public boolean isShowInPae() {
115
        return this.showInPae;
116
    }
117
 
118
    public void setShowInPae(boolean showInPae) {
119
        this.showInPae = showInPae;
120
    }
121
    public boolean isShowStudents() {
122
        return this.showStudents;
123
    }
124
 
125
    public void setShowStudents(boolean showStudents) {
126
        this.showStudents = showStudents;
127
    }
128
    public boolean isShowTeachers() {
129
        return this.showTeachers;
130
    }
131
 
132
    public void setShowTeachers(boolean showTeachers) {
133
        this.showTeachers = showTeachers;
134
    }
135
    public boolean isShowWorkers() {
136
        return this.showWorkers;
137
    }
138
 
139
    public void setShowWorkers(boolean showWorkers) {
140
        this.showWorkers = showWorkers;
141
    }
1731 jmachado 142
    public PageSectionImpl getPageSection() {
1729 jmachado 143
        return this.pageSection;
144
    }
145
 
1731 jmachado 146
    public void setPageSection(PageSectionImpl pageSection) {
1729 jmachado 147
        this.pageSection = pageSection;
148
    }
149
    public Set<CourseSchool> getSchools() {
150
        return this.schools;
151
    }
152
 
153
    public void setSchools(Set<CourseSchool> schools) {
154
        this.schools = schools;
155
    }
156
 
157
 
158
 
159
 
160
}
161
 
162