1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kew.engine.node;
17
18 import org.kuali.rice.kew.api.doctype.ProcessDefinitionContract;
19 import org.kuali.rice.kew.doctype.bo.DocumentType;
20
21 import javax.persistence.CascadeType;
22 import javax.persistence.Column;
23 import javax.persistence.Entity;
24 import javax.persistence.FetchType;
25 import javax.persistence.GeneratedValue;
26 import javax.persistence.Id;
27 import javax.persistence.JoinColumn;
28 import javax.persistence.ManyToOne;
29 import javax.persistence.OneToOne;
30 import javax.persistence.Table;
31 import javax.persistence.Version;
32 import java.io.Serializable;
33
34
35
36
37
38
39
40
41
42 @Entity
43 @Table(name="KREW_DOC_TYP_PROC_T")
44
45 public class ProcessDefinitionBo implements Serializable, ProcessDefinitionContract {
46
47 private static final long serialVersionUID = -6338857095673479752L;
48
49 @Id
50 @GeneratedValue(generator="KREW_RTE_NODE_S")
51 @Column(name="DOC_TYP_PROC_ID")
52 private String processId;
53 @Column(name="NM")
54 private String name;
55 @ManyToOne(fetch=FetchType.EAGER)
56 @JoinColumn(name="DOC_TYP_ID")
57 private DocumentType documentType;
58 @OneToOne(fetch=FetchType.EAGER, cascade={CascadeType.PERSIST, CascadeType.MERGE})
59 @JoinColumn(name="INIT_RTE_NODE_ID")
60 private RouteNode initialRouteNode;
61 @Column(name="INIT_IND")
62 private boolean initial = false;
63 @Version
64 @Column(name="VER_NBR")
65 private Integer lockVerNbr;
66
67 public String getProcessId() {
68 return processId;
69 }
70 public void setProcessId(String processId) {
71 this.processId = processId;
72 }
73 public DocumentType getDocumentType() {
74 return documentType;
75 }
76 public void setDocumentType(DocumentType documentType) {
77 this.documentType = documentType;
78 }
79 public RouteNode getInitialRouteNode() {
80 return initialRouteNode;
81 }
82 public void setInitialRouteNode(RouteNode initialRouteNode) {
83 this.initialRouteNode = initialRouteNode;
84 }
85 public String getName() {
86 return name;
87 }
88 public void setName(String name) {
89 this.name = name;
90 }
91 public boolean isInitial() {
92 return initial;
93 }
94 public void setInitial(boolean initial) {
95 this.initial = initial;
96 }
97 public Integer getLockVerNbr() {
98 return lockVerNbr;
99 }
100 public void setLockVerNbr(Integer lockVerNbr) {
101 this.lockVerNbr = lockVerNbr;
102 }
103
104 @Override
105 public String getId() {
106 if (processId == null) {
107 return null;
108 }
109 return processId.toString();
110 }
111
112 @Override
113 public Long getVersionNumber() {
114 if (lockVerNbr == null) {
115 return null;
116 }
117 return new Long(lockVerNbr.longValue());
118 }
119
120 @Override
121 public String getDocumentTypeId() {
122 if (documentType == null) {
123 return null;
124 }
125 return documentType.getId();
126 }
127
128 }