Subversion Repositories bacoAlunos

Rev

Rev 1675 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1670 jmachado 1
package pt.estgp.estgweb.domain;
2
// Generated 24/Fev/2017 8:56:08 by Hibernate Tools 3.2.0.b9
3
 
4
 
5
import java.util.Date;
6
import pt.estgp.estgweb.services.bpmnprocess.types.DomainRolesProxy;
7
import pt.estgp.estgweb.services.bpmnprocess.types.UserProxy;
8
 
9
/**
10
 * BpmnActorPoolInstance generated by hbm2java
11
 */
12
public abstract class BpmnActorPoolInstance extends pt.estgp.estgweb.domain.DomainObject 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 DomainRolesProxy domainRolesProxy;
19
     private UserProxy userProxy;
20
     private 1.5.0/docs/api/java/lang/Long.html">Long userId;
21
     private BpmnActorPoolImpl actorPool;
22
     private User user;
23
 
24
    public BpmnActorPoolInstance() {
25
    }
26
 
27
 
28
    public long getId() {
29
        return this.id;
30
    }
31
 
32
    public void setId(long id) {
33
        this.id = id;
34
    }
35
    public 5+0%2Fdocs%2Fapi+Date">Date getUpdateDate() {
36
        return this.updateDate;
37
    }
38
 
39
    public void setUpdateDate(5+0%2Fdocs%2Fapi+Date">Date updateDate) {
40
        this.updateDate = updateDate;
41
    }
42
    public 5+0%2Fdocs%2Fapi+Date">Date getSaveDate() {
43
        return this.saveDate;
44
    }
45
 
46
    public void setSaveDate(5+0%2Fdocs%2Fapi+Date">Date saveDate) {
47
        this.saveDate = saveDate;
48
    }
49
    public DomainRolesProxy getDomainRolesProxy() {
50
        return this.domainRolesProxy;
51
    }
52
 
53
    public void setDomainRolesProxy(DomainRolesProxy domainRolesProxy) {
54
        this.domainRolesProxy = domainRolesProxy;
55
    }
56
    public UserProxy getUserProxy() {
57
        return this.userProxy;
58
    }
59
 
60
    public void setUserProxy(UserProxy userProxy) {
61
        this.userProxy = userProxy;
62
    }
63
    public 1.5.0/docs/api/java/lang/Long.html">Long getUserId() {
64
        return this.userId;
65
    }
66
 
67
    public void setUserId(1.5.0/docs/api/java/lang/Long.html">Long userId) {
68
        this.userId = userId;
69
    }
70
    public BpmnActorPoolImpl getActorPool() {
71
        return this.actorPool;
72
    }
73
 
74
    public void setActorPool(BpmnActorPoolImpl actorPool) {
75
        this.actorPool = actorPool;
76
    }
77
    public User getUser() {
78
        return this.user;
79
    }
80
 
81
    public void setUser(User user) {
82
        this.user = user;
83
    }
84
 
85
 
86
 
87
 
88
}
89
 
90