Subversion Repositories bacoAlunos

Rev

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

Rev Author Line No. Line
1312 jmachado 1
package pt.estgp.estgweb.domain;
1830 jmachado 2
// Generated 4/nov/2017 9:59:25 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
import java.io.Serializable;
6
import java.util.Date;
7
 
8
/**
9
 * Job generated by hbm2java
10
 */
11
public abstract class Job extends pt.estgp.estgweb.domain.DomainSerializableObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
12
 
13
 
14
     private long id;
15
     private 5+0%2Fdocs%2Fapi+Date">Date updateDate;
16
     private 5+0%2Fdocs%2Fapi+Date">Date saveDate;
17
     private 5+0%2Fdocs%2Fapi+Date">Date startDate;
18
     private 1.5.0/docs/api/java/lang/String.html">String description;
19
     private boolean executed;
20
     private User owner;
21
     private 1.5.0/docs/api/java/io/Serializable.html">Serializable jobHandler;
22
 
23
    public Job() {
24
    }
25
 
26
 
27
    public long getId() {
28
        return this.id;
29
    }
30
 
31
    public void setId(long id) {
32
        this.id = id;
33
    }
34
    public 5+0%2Fdocs%2Fapi+Date">Date getUpdateDate() {
35
        return this.updateDate;
36
    }
37
 
38
    public void setUpdateDate(5+0%2Fdocs%2Fapi+Date">Date updateDate) {
39
        this.updateDate = updateDate;
40
    }
41
    public 5+0%2Fdocs%2Fapi+Date">Date getSaveDate() {
42
        return this.saveDate;
43
    }
44
 
45
    public void setSaveDate(5+0%2Fdocs%2Fapi+Date">Date saveDate) {
46
        this.saveDate = saveDate;
47
    }
48
    public 5+0%2Fdocs%2Fapi+Date">Date getStartDate() {
49
        return this.startDate;
50
    }
51
 
52
    public void setStartDate(5+0%2Fdocs%2Fapi+Date">Date startDate) {
53
        this.startDate = startDate;
54
    }
55
    public 1.5.0/docs/api/java/lang/String.html">String getDescription() {
56
        return this.description;
57
    }
58
 
59
    public void setDescription(1.5.0/docs/api/java/lang/String.html">String description) {
60
        this.description = description;
61
    }
62
    public boolean isExecuted() {
63
        return this.executed;
64
    }
65
 
66
    public void setExecuted(boolean executed) {
67
        this.executed = executed;
68
    }
69
    public User getOwner() {
70
        return this.owner;
71
    }
72
 
73
    public void setOwner(User owner) {
74
        this.owner = owner;
75
    }
76
    public 1.5.0/docs/api/java/io/Serializable.html">Serializable getJobHandler() {
77
        return this.jobHandler;
78
    }
79
 
80
    public void setJobHandler(1.5.0/docs/api/java/io/Serializable.html">Serializable jobHandler) {
81
        this.jobHandler = jobHandler;
82
    }
83
 
84
 
85
 
86
 
87
}
88
 
89