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
1312 jmachado 1
package pt.estgp.estgweb.domain;
1830 jmachado 2
// Generated 4/nov/2017 9:59:25 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
import java.util.Date;
6
 
7
/**
8
 * BlogPost generated by hbm2java
9
 */
10
public abstract class BlogPost 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 int month;
17
     private int year;
18
     private 1.5.0/docs/api/java/lang/String.html">String monthId;
19
     private 5+0%2Fdocs%2Fapi+Date">Date startDate;
20
     private 1.5.0/docs/api/java/lang/String.html">String title;
21
     private 1.5.0/docs/api/java/lang/String.html">String text;
22
     private boolean status;
23
     private 1.5.0/docs/api/java/awt/Image.html">Image image;
24
     private GenericUser owner;
25
     private Blog blog;
26
 
27
    public BlogPost() {
28
    }
29
 
30
 
31
    public long getId() {
32
        return this.id;
33
    }
34
 
35
    public void setId(long id) {
36
        this.id = id;
37
    }
38
    public 5+0%2Fdocs%2Fapi+Date">Date getUpdateDate() {
39
        return this.updateDate;
40
    }
41
 
42
    public void setUpdateDate(5+0%2Fdocs%2Fapi+Date">Date updateDate) {
43
        this.updateDate = updateDate;
44
    }
45
    public 5+0%2Fdocs%2Fapi+Date">Date getSaveDate() {
46
        return this.saveDate;
47
    }
48
 
49
    public void setSaveDate(5+0%2Fdocs%2Fapi+Date">Date saveDate) {
50
        this.saveDate = saveDate;
51
    }
52
    public int getMonth() {
53
        return this.month;
54
    }
55
 
56
    public void setMonth(int month) {
57
        this.month = month;
58
    }
59
    public int getYear() {
60
        return this.year;
61
    }
62
 
63
    public void setYear(int year) {
64
        this.year = year;
65
    }
66
    public 1.5.0/docs/api/java/lang/String.html">String getMonthId() {
67
        return this.monthId;
68
    }
69
 
70
    public void setMonthId(1.5.0/docs/api/java/lang/String.html">String monthId) {
71
        this.monthId = monthId;
72
    }
73
    public 5+0%2Fdocs%2Fapi+Date">Date getStartDate() {
74
        return this.startDate;
75
    }
76
 
77
    public void setStartDate(5+0%2Fdocs%2Fapi+Date">Date startDate) {
78
        this.startDate = startDate;
79
    }
80
    public 1.5.0/docs/api/java/lang/String.html">String getTitle() {
81
        return this.title;
82
    }
83
 
84
    public void setTitle(1.5.0/docs/api/java/lang/String.html">String title) {
85
        this.title = title;
86
    }
87
    public 1.5.0/docs/api/java/lang/String.html">String getText() {
88
        return this.text;
89
    }
90
 
91
    public void setText(1.5.0/docs/api/java/lang/String.html">String text) {
92
        this.text = text;
93
    }
94
    public boolean isStatus() {
95
        return this.status;
96
    }
97
 
98
    public void setStatus(boolean status) {
99
        this.status = status;
100
    }
101
    public 1.5.0/docs/api/java/awt/Image.html">Image getImage() {
102
        return this.image;
103
    }
104
 
105
    public void setImage(1.5.0/docs/api/java/awt/Image.html">Image image) {
106
        this.image = image;
107
    }
108
    public GenericUser getOwner() {
109
        return this.owner;
110
    }
111
 
112
    public void setOwner(GenericUser owner) {
113
        this.owner = owner;
114
    }
115
    public Blog getBlog() {
116
        return this.blog;
117
    }
118
 
119
    public void setBlog(Blog blog) {
120
        this.blog = blog;
121
    }
122
 
123
 
124
 
125
 
126
}
127
 
128