Subversion Repositories bacoAlunos

Rev

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

Rev Author Line No. Line
1312 jmachado 1
package pt.estgp.estgweb.domain;
1619 jmachado 2
// Generated 19/Jan/2017 8:47:29 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
import java.util.Date;
6
 
7
/**
8
 * Reminder generated by hbm2java
9
 */
10
public abstract class Reminder extends pt.estgp.estgweb.domain.OwnedDomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
11
 
12
 
13
     private long id;
14
     private 5+0%2Fdocs%2Fapi+Date">Date updateDate;
15
     private 5+0%2Fdocs%2Fapi+Date">Date saveDate;
16
     private 5+0%2Fdocs%2Fapi+Date">Date startDate;
17
     private 5+0%2Fdocs%2Fapi+Date">Date expireDate;
18
     private 1.5.0/docs/api/java/lang/String.html">String text;
19
     private GenericUser owner;
20
 
21
    public Reminder() {
22
    }
23
 
24
 
25
    public long getId() {
26
        return this.id;
27
    }
28
 
29
    public void setId(long id) {
30
        this.id = id;
31
    }
32
    public 5+0%2Fdocs%2Fapi+Date">Date getUpdateDate() {
33
        return this.updateDate;
34
    }
35
 
36
    public void setUpdateDate(5+0%2Fdocs%2Fapi+Date">Date updateDate) {
37
        this.updateDate = updateDate;
38
    }
39
    public 5+0%2Fdocs%2Fapi+Date">Date getSaveDate() {
40
        return this.saveDate;
41
    }
42
 
43
    public void setSaveDate(5+0%2Fdocs%2Fapi+Date">Date saveDate) {
44
        this.saveDate = saveDate;
45
    }
46
    public 5+0%2Fdocs%2Fapi+Date">Date getStartDate() {
47
        return this.startDate;
48
    }
49
 
50
    public void setStartDate(5+0%2Fdocs%2Fapi+Date">Date startDate) {
51
        this.startDate = startDate;
52
    }
53
    public 5+0%2Fdocs%2Fapi+Date">Date getExpireDate() {
54
        return this.expireDate;
55
    }
56
 
57
    public void setExpireDate(5+0%2Fdocs%2Fapi+Date">Date expireDate) {
58
        this.expireDate = expireDate;
59
    }
60
    public 1.5.0/docs/api/java/lang/String.html">String getText() {
61
        return this.text;
62
    }
63
 
64
    public void setText(1.5.0/docs/api/java/lang/String.html">String text) {
65
        this.text = text;
66
    }
67
    public GenericUser getOwner() {
68
        return this.owner;
69
    }
70
 
71
    public void setOwner(GenericUser owner) {
72
        this.owner = owner;
73
    }
74
 
75
 
76
 
77
 
78
}
79
 
80