View Javadoc
1   /**
2    * Copyright 2005-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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   * Represents a route path defined on a {@link DocumentType}.  A ProcessDefinition is a named entity which
37   * simply points to an initial {@link RouteNode} which represents the beginning of the ProcessDefinition.
38   * The path of the process can then be followed using the next nodes defined on the route nodes. 
39   *
40   * @author Kuali Rice Team (rice.collab@kuali.org)
41   */
42  @Entity
43  @Table(name="KREW_DOC_TYP_PROC_T")
44  //@Sequence(name="KREW_RTE_NODE_S",property="processId")
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 }