Subversion Repositories bacoAlunos

Rev

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

Rev Author Line No. Line
1312 jmachado 1
package pt.estgp.estgweb.domain;
1974 grupo5 2
// Generated 29/jan/2018 12:25:13 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
import java.util.Date;
6
 
7
/**
8
 * ProcessEventFile generated by hbm2java
9
 */
10
public abstract class ProcessEventFile 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 1.5.0/docs/api/java/lang/String.html">String name;
16
     private 1.5.0/docs/api/java/lang/String.html">String fileAccessLevel;
17
     private 1.5.0/docs/api/java/lang/String.html">String oldFileAccessLevel;
18
     private 1.5.0/docs/api/java/lang/String.html">String fileAccessIdentifiers;
19
     private 1.5.0/docs/api/java/lang/String.html">String fileAccessRoles;
20
     private 5+0%2Fdocs%2Fapi+Date">Date importDate;
21
     private 1.5.0/docs/api/java/lang/String.html">String repositoryStream;
22
     private 1.5.0/docs/api/java/lang/String.html">String notes;
23
     private boolean ghost;
24
     private GenericUser owner;
25
     private ProcessEvent processEvent;
26
 
27
    public ProcessEventFile() {
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 1.5.0/docs/api/java/lang/String.html">String getName() {
46
        return this.name;
47
    }
48
 
49
    public void setName(1.5.0/docs/api/java/lang/String.html">String name) {
50
        this.name = name;
51
    }
52
    public 1.5.0/docs/api/java/lang/String.html">String getFileAccessLevel() {
53
        return this.fileAccessLevel;
54
    }
55
 
56
    public void setFileAccessLevel(1.5.0/docs/api/java/lang/String.html">String fileAccessLevel) {
57
        this.fileAccessLevel = fileAccessLevel;
58
    }
59
    public 1.5.0/docs/api/java/lang/String.html">String getOldFileAccessLevel() {
60
        return this.oldFileAccessLevel;
61
    }
62
 
63
    public void setOldFileAccessLevel(1.5.0/docs/api/java/lang/String.html">String oldFileAccessLevel) {
64
        this.oldFileAccessLevel = oldFileAccessLevel;
65
    }
66
    public 1.5.0/docs/api/java/lang/String.html">String getFileAccessIdentifiers() {
67
        return this.fileAccessIdentifiers;
68
    }
69
 
70
    public void setFileAccessIdentifiers(1.5.0/docs/api/java/lang/String.html">String fileAccessIdentifiers) {
71
        this.fileAccessIdentifiers = fileAccessIdentifiers;
72
    }
73
    public 1.5.0/docs/api/java/lang/String.html">String getFileAccessRoles() {
74
        return this.fileAccessRoles;
75
    }
76
 
77
    public void setFileAccessRoles(1.5.0/docs/api/java/lang/String.html">String fileAccessRoles) {
78
        this.fileAccessRoles = fileAccessRoles;
79
    }
80
    public 5+0%2Fdocs%2Fapi+Date">Date getImportDate() {
81
        return this.importDate;
82
    }
83
 
84
    public void setImportDate(5+0%2Fdocs%2Fapi+Date">Date importDate) {
85
        this.importDate = importDate;
86
    }
87
    public 1.5.0/docs/api/java/lang/String.html">String getRepositoryStream() {
88
        return this.repositoryStream;
89
    }
90
 
91
    public void setRepositoryStream(1.5.0/docs/api/java/lang/String.html">String repositoryStream) {
92
        this.repositoryStream = repositoryStream;
93
    }
94
    public 1.5.0/docs/api/java/lang/String.html">String getNotes() {
95
        return this.notes;
96
    }
97
 
98
    public void setNotes(1.5.0/docs/api/java/lang/String.html">String notes) {
99
        this.notes = notes;
100
    }
101
    public boolean isGhost() {
102
        return this.ghost;
103
    }
104
 
105
    public void setGhost(boolean ghost) {
106
        this.ghost = ghost;
107
    }
108
    public GenericUser getOwner() {
109
        return this.owner;
110
    }
111
 
112
    public void setOwner(GenericUser owner) {
113
        this.owner = owner;
114
    }
115
    public ProcessEvent getProcessEvent() {
116
        return this.processEvent;
117
    }
118
 
119
    public void setProcessEvent(ProcessEvent processEvent) {
120
        this.processEvent = processEvent;
121
    }
122
 
123
 
124
 
125
 
126
}
127
 
128