1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
package org.kuali.rice.kew.engine.node.dao.impl; |
15 |
|
|
16 |
|
import org.apache.ojb.broker.query.Criteria; |
17 |
|
import org.apache.ojb.broker.query.QueryByCriteria; |
18 |
|
import org.apache.ojb.broker.query.QueryFactory; |
19 |
|
import org.apache.ojb.broker.query.ReportQueryByCriteria; |
20 |
|
import org.kuali.rice.kew.engine.node.Branch; |
21 |
|
import org.kuali.rice.kew.engine.node.NodeState; |
22 |
|
import org.kuali.rice.kew.engine.node.RouteNode; |
23 |
|
import org.kuali.rice.kew.engine.node.RouteNodeInstance; |
24 |
|
import org.kuali.rice.kew.engine.node.dao.RouteNodeDAO; |
25 |
|
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
26 |
|
import org.springmodules.orm.ojb.support.PersistenceBrokerDaoSupport; |
27 |
|
|
28 |
|
import java.util.ArrayList; |
29 |
|
import java.util.Iterator; |
30 |
|
import java.util.List; |
31 |
|
|
32 |
|
|
|
|
| 0% |
Uncovered Elements: 88 (88) |
Complexity: 21 |
Complexity Density: 0.33 |
|
33 |
|
public class RouteNodeDAOOjbImpl extends PersistenceBrokerDaoSupport implements RouteNodeDAO { |
34 |
|
|
35 |
|
private static final String ROUTE_NODE_ID = "routeNodeId"; |
36 |
|
private static final String ROUTE_NODE_INSTANCE_ID = "routeNodeInstanceId"; |
37 |
|
private static final String NODE_INSTANCE_ID = "nodeInstanceId"; |
38 |
|
private static final String DOCUMENT_ID = "documentId"; |
39 |
|
private static final String ROUTE_HEADER_ID = "routeHeaderId"; |
40 |
|
private static final String ROUTE_NODE_NAME = "routeNodeName"; |
41 |
|
private static final String DOCUMENT_TYPE_ID = "documentTypeId"; |
42 |
|
private static final String PROCESS_ID = "processId"; |
43 |
|
private static final String ACTIVE = "active"; |
44 |
|
private static final String COMPLETE = "complete"; |
45 |
|
private static final String FINAL_APPROVAL = "finalApprovalInd"; |
46 |
|
private static final String KEY = "key"; |
47 |
|
private static final String Route_Node_State_ID = "nodeStateId"; |
48 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
49 |
0
|
public void save(RouteNode node) {... |
50 |
0
|
getPersistenceBrokerTemplate().store(node); |
51 |
|
} |
52 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
53 |
0
|
public void save(RouteNodeInstance nodeInstance) {... |
54 |
|
|
55 |
|
|
56 |
0
|
getPersistenceBrokerTemplate().store(nodeInstance.getBranch()); |
57 |
0
|
getPersistenceBrokerTemplate().store(nodeInstance); |
58 |
|
} |
59 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
60 |
0
|
public void save(NodeState nodeState) {... |
61 |
0
|
getPersistenceBrokerTemplate().store(nodeState); |
62 |
|
} |
63 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
64 |
0
|
public void save(Branch branch) {... |
65 |
0
|
getPersistenceBrokerTemplate().store(branch); |
66 |
|
} |
67 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
68 |
0
|
public RouteNode findRouteNodeById(Long nodeId) {... |
69 |
0
|
Criteria criteria = new Criteria(); |
70 |
0
|
criteria.addEqualTo(ROUTE_NODE_ID, nodeId); |
71 |
0
|
return (RouteNode) getPersistenceBrokerTemplate().getObjectByQuery(new QueryByCriteria(RouteNode.class, criteria)); |
72 |
|
} |
73 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
74 |
0
|
public RouteNodeInstance findRouteNodeInstanceById(Long nodeInstanceId) {... |
75 |
0
|
Criteria criteria = new Criteria(); |
76 |
0
|
criteria.addEqualTo(ROUTE_NODE_INSTANCE_ID, nodeInstanceId); |
77 |
0
|
return (RouteNodeInstance) getPersistenceBrokerTemplate().getObjectByQuery( |
78 |
|
new QueryByCriteria(RouteNodeInstance.class, criteria)); |
79 |
|
} |
80 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
81 |
0
|
@SuppressWarnings(value = "unchecked")... |
82 |
|
public List<RouteNodeInstance> getActiveNodeInstances(Long documentId) { |
83 |
0
|
Criteria criteria = new Criteria(); |
84 |
0
|
criteria.addEqualTo(DOCUMENT_ID, documentId); |
85 |
0
|
criteria.addEqualTo(ACTIVE, Boolean.TRUE); |
86 |
0
|
return (List<RouteNodeInstance>) getPersistenceBrokerTemplate().getCollectionByQuery( |
87 |
|
new QueryByCriteria(RouteNodeInstance.class, criteria)); |
88 |
|
} |
89 |
|
|
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 2 |
Complexity Density: 0.2 |
|
90 |
0
|
@SuppressWarnings("unchecked")... |
91 |
|
public List<RouteNodeInstance> getTerminalNodeInstances(Long documentId) { |
92 |
0
|
Criteria criteria = new Criteria(); |
93 |
0
|
criteria.addEqualTo(DOCUMENT_ID, documentId); |
94 |
0
|
criteria.addEqualTo(ACTIVE, Boolean.FALSE); |
95 |
0
|
criteria.addEqualTo(COMPLETE, Boolean.TRUE); |
96 |
|
|
97 |
|
|
98 |
|
|
99 |
|
|
100 |
|
|
101 |
|
|
102 |
|
|
103 |
0
|
List<RouteNodeInstance> terminalNodes = new ArrayList<RouteNodeInstance>(); |
104 |
0
|
List<RouteNodeInstance> routeNodeInstances = (List<RouteNodeInstance>) getPersistenceBrokerTemplate().getCollectionByQuery(new QueryByCriteria(RouteNodeInstance.class, criteria)); |
105 |
0
|
for (RouteNodeInstance routeNodeInstance : routeNodeInstances) { |
106 |
0
|
if (routeNodeInstance.getNextNodeInstances().isEmpty()) { |
107 |
0
|
terminalNodes.add(routeNodeInstance); |
108 |
|
} |
109 |
|
} |
110 |
0
|
return terminalNodes; |
111 |
|
} |
112 |
|
|
|
|
| 0% |
Uncovered Elements: 7 (7) |
Complexity: 1 |
Complexity Density: 0.14 |
|
113 |
0
|
public List getInitialNodeInstances(Long documentId) {... |
114 |
0
|
Criteria subCriteria = new Criteria(); |
115 |
0
|
subCriteria.addEqualTo(ROUTE_HEADER_ID, documentId); |
116 |
0
|
ReportQueryByCriteria subQuery = QueryFactory.newReportQuery(DocumentRouteHeaderValue.class, subCriteria); |
117 |
0
|
subQuery.setAttributes(new String[]{"initialRouteNodeInstances.routeNodeInstanceId"}); |
118 |
0
|
Criteria criteria = new Criteria(); |
119 |
0
|
criteria.addIn(ROUTE_NODE_INSTANCE_ID, subQuery); |
120 |
0
|
return (List) getPersistenceBrokerTemplate().getCollectionByQuery( |
121 |
|
new QueryByCriteria(RouteNodeInstance.class, criteria)); |
122 |
|
} |
123 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
124 |
0
|
public NodeState findNodeState(Long nodeInstanceId, String key) {... |
125 |
0
|
Criteria criteria = new Criteria(); |
126 |
0
|
criteria.addEqualTo(NODE_INSTANCE_ID, nodeInstanceId); |
127 |
0
|
criteria.addEqualTo(KEY, key); |
128 |
0
|
return (NodeState) getPersistenceBrokerTemplate().getObjectByQuery(new QueryByCriteria(NodeState.class, criteria)); |
129 |
|
} |
130 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
131 |
0
|
public RouteNode findRouteNodeByName(Long documentTypeId, String name) {... |
132 |
0
|
Criteria criteria = new Criteria(); |
133 |
0
|
criteria.addEqualTo(ROUTE_NODE_NAME, name); |
134 |
0
|
criteria.addEqualTo(DOCUMENT_TYPE_ID, documentTypeId); |
135 |
0
|
return (RouteNode) getPersistenceBrokerTemplate().getObjectByQuery(new QueryByCriteria(RouteNode.class, criteria)); |
136 |
|
} |
137 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
138 |
0
|
public List findFinalApprovalRouteNodes(Long documentTypeId) {... |
139 |
0
|
Criteria criteria = new Criteria(); |
140 |
0
|
criteria.addEqualTo(DOCUMENT_TYPE_ID, documentTypeId); |
141 |
0
|
criteria.addEqualTo(FINAL_APPROVAL, Boolean.TRUE); |
142 |
0
|
return (List) getPersistenceBrokerTemplate().getCollectionByQuery(new QueryByCriteria(RouteNode.class, criteria)); |
143 |
|
} |
144 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
145 |
0
|
public List findProcessNodeInstances(RouteNodeInstance process) {... |
146 |
0
|
Criteria crit = new Criteria(); |
147 |
0
|
crit.addEqualTo(PROCESS_ID, process.getRouteNodeInstanceId()); |
148 |
0
|
return (List) getPersistenceBrokerTemplate() |
149 |
|
.getCollectionByQuery(new QueryByCriteria(RouteNodeInstance.class, crit)); |
150 |
|
} |
151 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
152 |
0
|
public List findRouteNodeInstances(Long documentId) {... |
153 |
0
|
Criteria criteria = new Criteria(); |
154 |
0
|
criteria.addEqualTo(DOCUMENT_ID, documentId); |
155 |
0
|
return (List) getPersistenceBrokerTemplate().getCollectionByQuery( |
156 |
|
new QueryByCriteria(RouteNodeInstance.class, criteria)); |
157 |
|
} |
158 |
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 2 |
Complexity Density: 0.33 |
|
159 |
0
|
public void deleteLinksToPreNodeInstances(RouteNodeInstance routeNodeInstance) {... |
160 |
0
|
List<RouteNodeInstance> preNodeInstances = routeNodeInstance.getPreviousNodeInstances(); |
161 |
0
|
for (Iterator<RouteNodeInstance> preNodeInstanceIter = preNodeInstances.iterator(); preNodeInstanceIter.hasNext();) { |
162 |
0
|
RouteNodeInstance preNodeInstance = (RouteNodeInstance) preNodeInstanceIter.next(); |
163 |
0
|
List<RouteNodeInstance> nextInstances = preNodeInstance.getNextNodeInstances(); |
164 |
0
|
nextInstances.remove(routeNodeInstance); |
165 |
0
|
save(preNodeInstance); |
166 |
|
} |
167 |
|
} |
168 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
169 |
0
|
public void deleteRouteNodeInstancesHereAfter(RouteNodeInstance routeNodeInstance) {... |
170 |
0
|
this.getPersistenceBrokerTemplate().delete(routeNodeInstance); |
171 |
|
} |
172 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
173 |
0
|
public void deleteNodeStateById(Long nodeStateId) {... |
174 |
0
|
Criteria criteria = new Criteria(); |
175 |
0
|
criteria.addEqualTo(Route_Node_State_ID, nodeStateId); |
176 |
0
|
NodeState nodeState = (NodeState) getPersistenceBrokerTemplate().getObjectByQuery( |
177 |
|
new QueryByCriteria(NodeState.class, criteria)); |
178 |
0
|
getPersistenceBrokerTemplate().delete(nodeState); |
179 |
|
} |
180 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
181 |
0
|
public void deleteNodeStates(List statesToBeDeleted) {... |
182 |
0
|
for (Iterator stateToBeDeletedIter = statesToBeDeleted.iterator(); stateToBeDeletedIter.hasNext();) { |
183 |
0
|
Long stateId = (Long) stateToBeDeletedIter.next(); |
184 |
0
|
deleteNodeStateById(stateId); |
185 |
|
} |
186 |
|
} |
187 |
|
|
188 |
|
} |