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.util.Date;
6
 
7
/**
8
 * CourseUserAssociation generated by hbm2java
9
 */
10
public abstract class CourseUserAssociation extends pt.estgp.estgweb.domain.DomainSerializableObject 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 5+0%2Fdocs%2Fapi+Date">Date saveDate;
16
     private 1.5.0/docs/api/java/lang/String.html">String role;
17
     private User user;
18
     private Course course;
19
 
20
    public CourseUserAssociation() {
21
    }
22
 
23
 
24
    public long getId() {
25
        return this.id;
26
    }
27
 
28
    public void setId(long id) {
29
        this.id = id;
30
    }
31
    public 5+0%2Fdocs%2Fapi+Date">Date getUpdateDate() {
32
        return this.updateDate;
33
    }
34
 
35
    public void setUpdateDate(5+0%2Fdocs%2Fapi+Date">Date updateDate) {
36
        this.updateDate = updateDate;
37
    }
38
    public 5+0%2Fdocs%2Fapi+Date">Date getSaveDate() {
39
        return this.saveDate;
40
    }
41
 
42
    public void setSaveDate(5+0%2Fdocs%2Fapi+Date">Date saveDate) {
43
        this.saveDate = saveDate;
44
    }
45
    public 1.5.0/docs/api/java/lang/String.html">String getRole() {
46
        return this.role;
47
    }
48
 
49
    public void setRole(1.5.0/docs/api/java/lang/String.html">String role) {
50
        this.role = role;
51
    }
52
    public User getUser() {
53
        return this.user;
54
    }
55
 
56
    public void setUser(User user) {
57
        this.user = user;
58
    }
59
    public Course getCourse() {
60
        return this.course;
61
    }
62
 
63
    public void setCourse(Course course) {
64
        this.course = course;
65
    }
66
 
67
 
68
 
69
 
70
}
71
 
72