Subversion Repositories bacoAlunos

Rev

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

Rev Author Line No. Line
1670 jmachado 1
package pt.estgp.estgweb.domain;
1675 jmachado 2
// Generated 17/Mar/2017 9:59:33 by Hibernate Tools 3.2.0.b9
1670 jmachado 3
 
4
 
5
import java.util.Date;
1675 jmachado 6
import java.util.HashSet;
7
import java.util.Set;
1670 jmachado 8
 
9
/**
10
 * RepositoryDocumentCollection generated by hbm2java
11
 */
12
public abstract class RepositoryDocumentCollection 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 boolean visible;
19
     private 1.5.0/docs/api/java/lang/String.html">String name;
20
     private 1.5.0/docs/api/java/lang/String.html">String description;
1675 jmachado 21
     private 1.5.0/docs/api/java/lang/String.html">String legacyUrl;
22
     private RepositoryDocumentCollectionImpl parent;
23
     private Set<RepositoryDocumentCollectionImpl> childs = new HashSet<RepositoryDocumentCollectionImpl>(0);
1670 jmachado 24
 
25
    public RepositoryDocumentCollection() {
26
    }
27
 
28
 
29
    public long getId() {
30
        return this.id;
31
    }
32
 
33
    public void setId(long 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 boolean isVisible() {
51
        return this.visible;
52
    }
53
 
54
    public void setVisible(boolean visible) {
55
        this.visible = visible;
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 getDescription() {
65
        return this.description;
66
    }
67
 
68
    public void setDescription(1.5.0/docs/api/java/lang/String.html">String description) {
69
        this.description = description;
70
    }
1675 jmachado 71
    public 1.5.0/docs/api/java/lang/String.html">String getLegacyUrl() {
72
        return this.legacyUrl;
73
    }
74
 
75
    public void setLegacyUrl(1.5.0/docs/api/java/lang/String.html">String legacyUrl) {
76
        this.legacyUrl = legacyUrl;
77
    }
78
    public RepositoryDocumentCollectionImpl getParent() {
79
        return this.parent;
80
    }
81
 
82
    public void setParent(RepositoryDocumentCollectionImpl parent) {
83
        this.parent = parent;
84
    }
85
    public Set<RepositoryDocumentCollectionImpl> getChilds() {
86
        return this.childs;
87
    }
88
 
89
    public void setChilds(Set<RepositoryDocumentCollectionImpl> childs) {
90
        this.childs = childs;
91
    }
1670 jmachado 92
 
93
 
94
 
95
 
96
}
97
 
98