Subversion Repositories bacoAlunos

Rev

Rev 1730 | Rev 1732 | 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;
1731 jmachado 2
// Generated 15/Abr/2017 17:04:23 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;
24
     private boolean showInBaco;
25
     private boolean showInPae;
26
     private boolean showStudents;
27
     private boolean showTeachers;
28
     private boolean showWorkers;
1731 jmachado 29
     private PageSectionImpl pageSection;
1729 jmachado 30
     private Set<CourseSchool> schools = new HashSet<CourseSchool>(0);
31
 
32
    public ConfigurationSeparator() {
33
    }
34
 
35
 
36
    public long getId() {
37
        return this.id;
38
    }
39
 
40
    public void setId(long id) {
41
        this.id = id;
42
    }
43
    public 5+0%2Fdocs%2Fapi+Date">Date getUpdateDate() {
44
        return this.updateDate;
45
    }
46
 
47
    public void setUpdateDate(5+0%2Fdocs%2Fapi+Date">Date updateDate) {
48
        this.updateDate = updateDate;
49
    }
50
    public 5+0%2Fdocs%2Fapi+Date">Date getSaveDate() {
51
        return this.saveDate;
52
    }
53
 
54
    public void setSaveDate(5+0%2Fdocs%2Fapi+Date">Date saveDate) {
55
        this.saveDate = saveDate;
56
    }
57
    public 1.5.0/docs/api/java/lang/String.html">String getName() {
58
        return this.name;
59
    }
60
 
61
    public void setName(1.5.0/docs/api/java/lang/String.html">String name) {
62
        this.name = name;
63
    }
64
    public 1.5.0/docs/api/java/lang/String.html">String getNameEn() {
65
        return this.nameEn;
66
    }
67
 
68
    public void setNameEn(1.5.0/docs/api/java/lang/String.html">String nameEn) {
69
        this.nameEn = nameEn;
70
    }
71
    public 1.5.0/docs/api/java/lang/String.html">String getNameEs() {
72
        return this.nameEs;
73
    }
74
 
75
    public void setNameEs(1.5.0/docs/api/java/lang/String.html">String nameEs) {
76
        this.nameEs = nameEs;
77
    }
78
    public 1.5.0/docs/api/java/lang/String.html">String getNameFr() {
79
        return this.nameFr;
80
    }
81
 
82
    public void setNameFr(1.5.0/docs/api/java/lang/String.html">String nameFr) {
83
        this.nameFr = nameFr;
84
    }
85
    public 1.5.0/docs/api/java/lang/String.html">String getDescription() {
86
        return this.description;
87
    }
88
 
89
    public void setDescription(1.5.0/docs/api/java/lang/String.html">String description) {
90
        this.description = description;
91
    }
92
    public boolean isActive() {
93
        return this.active;
94
    }
95
 
96
    public void setActive(boolean active) {
97
        this.active = active;
98
    }
99
    public boolean isShowInBaco() {
100
        return this.showInBaco;
101
    }
102
 
103
    public void setShowInBaco(boolean showInBaco) {
104
        this.showInBaco = showInBaco;
105
    }
106
    public boolean isShowInPae() {
107
        return this.showInPae;
108
    }
109
 
110
    public void setShowInPae(boolean showInPae) {
111
        this.showInPae = showInPae;
112
    }
113
    public boolean isShowStudents() {
114
        return this.showStudents;
115
    }
116
 
117
    public void setShowStudents(boolean showStudents) {
118
        this.showStudents = showStudents;
119
    }
120
    public boolean isShowTeachers() {
121
        return this.showTeachers;
122
    }
123
 
124
    public void setShowTeachers(boolean showTeachers) {
125
        this.showTeachers = showTeachers;
126
    }
127
    public boolean isShowWorkers() {
128
        return this.showWorkers;
129
    }
130
 
131
    public void setShowWorkers(boolean showWorkers) {
132
        this.showWorkers = showWorkers;
133
    }
1731 jmachado 134
    public PageSectionImpl getPageSection() {
1729 jmachado 135
        return this.pageSection;
136
    }
137
 
1731 jmachado 138
    public void setPageSection(PageSectionImpl pageSection) {
1729 jmachado 139
        this.pageSection = pageSection;
140
    }
141
    public Set<CourseSchool> getSchools() {
142
        return this.schools;
143
    }
144
 
145
    public void setSchools(Set<CourseSchool> schools) {
146
        this.schools = schools;
147
    }
148
 
149
 
150
 
151
 
152
}
153
 
154