Subversion Repositories bacoAlunos

Rev

Rev 1927 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1782 jmachado 1
package pt.estgp.estgweb.domain;
1974 grupo5 2
// Generated 29/jan/2018 12:25:13 by Hibernate Tools 3.2.0.b9
1782 jmachado 3
 
4
 
5
 
6
/**
7
 * BpmnVariableInstance generated by hbm2java
8
 */
9
public abstract class BpmnVariableInstance 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 value;
15
 
16
    public BpmnVariableInstance() {
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 getValue() {
35
        return this.value;
36
    }
37
 
38
    public void setValue(1.5.0/docs/api/java/lang/String.html">String value) {
39
        this.value = value;
40
    }
41
 
42
 
43
 
44
 
45
}
46
 
47