Subversion Repositories bacoAlunos

Rev

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

Rev Author Line No. Line
1755 jmachado 1
package pt.estgp.estgweb.domain;
1771 jmachado 2
// Generated 3/Jun/2017 20:45:30 by Hibernate Tools 3.2.0.b9
1755 jmachado 3
 
4
 
5
import java.util.Date;
6
 
7
/**
8
 * BpmnFlowComponentTaskActorInstance generated by hbm2java
9
 */
10
public abstract class BpmnFlowComponentTaskActorInstance extends pt.estgp.estgweb.domain.BpmnFlowComponentTaskInstanceImpl implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
11
 
12
 
13
     private 5+0%2Fdocs%2Fapi+Date">Date deliveryScheduleDate;
14
     private 5+0%2Fdocs%2Fapi+Date">Date startScheduleDate;
15
     private 1.5.0/docs/api/java/lang/Integer.html">Integer taskForceDays;
16
     private 1.5.0/docs/api/java/lang/String.html">String notes;
17
     private User user;
18
 
19
    public BpmnFlowComponentTaskActorInstance() {
20
    }
21
 
22
 
23
    public 5+0%2Fdocs%2Fapi+Date">Date getDeliveryScheduleDate() {
24
        return this.deliveryScheduleDate;
25
    }
26
 
27
    public void setDeliveryScheduleDate(5+0%2Fdocs%2Fapi+Date">Date deliveryScheduleDate) {
28
        this.deliveryScheduleDate = deliveryScheduleDate;
29
    }
30
    public 5+0%2Fdocs%2Fapi+Date">Date getStartScheduleDate() {
31
        return this.startScheduleDate;
32
    }
33
 
34
    public void setStartScheduleDate(5+0%2Fdocs%2Fapi+Date">Date startScheduleDate) {
35
        this.startScheduleDate = startScheduleDate;
36
    }
37
    public 1.5.0/docs/api/java/lang/Integer.html">Integer getTaskForceDays() {
38
        return this.taskForceDays;
39
    }
40
 
41
    public void setTaskForceDays(1.5.0/docs/api/java/lang/Integer.html">Integer taskForceDays) {
42
        this.taskForceDays = taskForceDays;
43
    }
44
    public 1.5.0/docs/api/java/lang/String.html">String getNotes() {
45
        return this.notes;
46
    }
47
 
48
    public void setNotes(1.5.0/docs/api/java/lang/String.html">String notes) {
49
        this.notes = notes;
50
    }
51
    public User getUser() {
52
        return this.user;
53
    }
54
 
55
    public void setUser(User user) {
56
        this.user = user;
57
    }
58
 
59
 
60
 
61
 
62
}
63
 
64