Subversion Repositories bacoAlunos

Rev

Rev 1841 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1312 jmachado 1
package pt.estgp.estgweb.domain;
1843 jmachado 2
// Generated 4/nov/2017 19:35:42 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
import java.util.Date;
6
import java.util.HashSet;
7
import java.util.Set;
8
 
9
/**
10
 * UrlStatYear generated by hbm2java
11
 */
12
public abstract class UrlStatYear extends pt.estgp.estgweb.domain.DomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
13
 
14
 
15
     private UrlStatYearId 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/Integer.html">Integer totalClicks;
19
     private Set<UrlStatMonth> months = new HashSet<UrlStatMonth>(0);
20
 
21
    public UrlStatYear() {
22
    }
23
 
24
 
25
    public UrlStatYear(UrlStatYearId id) {
26
        this.id = id;
27
    }
28
 
29
    public UrlStatYearId getId() {
30
        return this.id;
31
    }
32
 
33
    public void setId(UrlStatYearId id) {
34
        this.id = id;
35
    }
36
    public 5+0%2Fdocs%2Fapi+Date">Date getUpdateDate() {
37
        return this.updateDate;
38
    }
39
 
40
    public void setUpdateDate(5+0%2Fdocs%2Fapi+Date">Date updateDate) {
41
        this.updateDate = updateDate;
42
    }
43
    public 5+0%2Fdocs%2Fapi+Date">Date getSaveDate() {
44
        return this.saveDate;
45
    }
46
 
47
    public void setSaveDate(5+0%2Fdocs%2Fapi+Date">Date saveDate) {
48
        this.saveDate = saveDate;
49
    }
50
    public 1.5.0/docs/api/java/lang/Integer.html">Integer getTotalClicks() {
51
        return this.totalClicks;
52
    }
53
 
54
    public void setTotalClicks(1.5.0/docs/api/java/lang/Integer.html">Integer totalClicks) {
55
        this.totalClicks = totalClicks;
56
    }
57
    public Set<UrlStatMonth> getMonths() {
58
        return this.months;
59
    }
60
 
61
    public void setMonths(Set<UrlStatMonth> months) {
62
        this.months = months;
63
    }
64
 
65
 
66
 
67
 
68
}
69
 
70