Subversion Repositories bacoAlunos

Rev

Rev 1780 | Rev 1782 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1780 Rev 1781
Line 1... Line 1...
1
package pt.estgp.estgweb.domain;
1
package pt.estgp.estgweb.domain;
2
// Generated 15/Jun/2017 13:07:44 by Hibernate Tools 3.2.0.b9
2
// Generated 15/Jun/2017 19:47:03 by Hibernate Tools 3.2.0.b9
3
 
3
 
4
 
4
 
-
 
5
import java.util.ArrayList;
5
import java.util.Date;
6
import java.util.Date;
6
import java.util.HashSet;
-
 
7
import java.util.Set;
7
import java.util.List;
8
 
8
 
9
/**
9
/**
10
 * BpmnProcess generated by hbm2java
10
 * BpmnProcess generated by hbm2java
11
 */
11
 */
12
public abstract class BpmnProcess extends pt.estgp.estgweb.domain.DomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
12
public abstract class BpmnProcess extends pt.estgp.estgweb.domain.DomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
Line 17... Line 17...
17
     private 5+0%2Fdocs%2Fapi+Date">Date saveDate;
17
     private 5+0%2Fdocs%2Fapi+Date">Date saveDate;
18
     private boolean active;
18
     private boolean active;
19
     private 1.5.0/docs/api/java/lang/String.html">String name;
19
     private 1.5.0/docs/api/java/lang/String.html">String name;
20
     private 1.5.0/docs/api/java/lang/String.html">String description;
20
     private 1.5.0/docs/api/java/lang/String.html">String description;
21
     private 1.5.0/docs/api/java/lang/String.html">String path;
21
     private 1.5.0/docs/api/java/lang/String.html">String path;
22
     private Set<BpmnFlowComponent> flowComponents = new HashSet<BpmnFlowComponent>(0);
-
 
23
     private Set<BpmnActorPool> actorPools = new HashSet<BpmnActorPool>(0);
22
     private List<BpmnActorPool> actorPools = new ArrayList<BpmnActorPool>(0);
24
 
23
 
25
    public BpmnProcess() {
24
    public BpmnProcess() {
26
    }
25
    }
27
 
26
 
28
   
27
   
Line 73... Line 72...
73
    }
72
    }
74
   
73
   
75
    public void setPath(1.5.0/docs/api/java/lang/String.html">String path) {
74
    public void setPath(1.5.0/docs/api/java/lang/String.html">String path) {
76
        this.path = path;
75
        this.path = path;
77
    }
76
    }
78
    public Set<BpmnFlowComponent> getFlowComponents() {
-
 
79
        return this.flowComponents;
-
 
80
    }
-
 
81
   
-
 
82
    public void setFlowComponents(Set<BpmnFlowComponent> flowComponents) {
-
 
83
        this.flowComponents = flowComponents;
-
 
84
    }
-
 
85
    public Set<BpmnActorPool> getActorPools() {
77
    public List<BpmnActorPool> getActorPools() {
86
        return this.actorPools;
78
        return this.actorPools;
87
    }
79
    }
88
   
80
   
89
    public void setActorPools(Set<BpmnActorPool> actorPools) {
81
    public void setActorPools(List<BpmnActorPool> actorPools) {
90
        this.actorPools = actorPools;
82
        this.actorPools = actorPools;
91
    }
83
    }
92
 
84
 
93
 
85
 
94
 
86