Subversion Repositories bacoAlunos

Rev

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

Rev Author Line No. Line
1782 jmachado 1
package pt.estgp.estgweb.domain;
2
// Generated 17/Jun/2017 17:19:42 by Hibernate Tools 3.2.0.b9
3
 
4
 
5
 
6
/**
7
 * BpmnVariable generated by hbm2java
8
 */
9
public abstract class BpmnVariable extends pt.estgp.estgweb.domain.DomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
10
 
11
 
12
     private long id;
13
     private 1.5.0/docs/api/java/lang/String.html">String name;
14
     private 1.5.0/docs/api/java/lang/String.html">String type;
15
 
16
    public BpmnVariable() {
17
    }
18
 
19
 
20
    public long getId() {
21
        return this.id;
22
    }
23
 
24
    public void setId(long id) {
25
        this.id = id;
26
    }
27
    public 1.5.0/docs/api/java/lang/String.html">String getName() {
28
        return this.name;
29
    }
30
 
31
    public void setName(1.5.0/docs/api/java/lang/String.html">String name) {
32
        this.name = name;
33
    }
34
    public 1.5.0/docs/api/java/lang/String.html">String getType() {
35
        return this.type;
36
    }
37
 
38
    public void setType(1.5.0/docs/api/java/lang/String.html">String type) {
39
        this.type = type;
40
    }
41
 
42
 
43
 
44
 
45
}
46
 
47