1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kew.rule.web; |
17 | |
|
18 | |
import java.util.ArrayList; |
19 | |
import java.util.Collections; |
20 | |
import java.util.HashMap; |
21 | |
import java.util.HashSet; |
22 | |
import java.util.LinkedHashMap; |
23 | |
import java.util.List; |
24 | |
import java.util.Map; |
25 | |
import java.util.Set; |
26 | |
|
27 | |
import javax.servlet.http.HttpServletRequest; |
28 | |
import javax.servlet.http.HttpServletResponse; |
29 | |
|
30 | |
import org.apache.commons.lang.StringUtils; |
31 | |
import org.apache.log4j.Logger; |
32 | |
import org.apache.struts.action.ActionForm; |
33 | |
import org.apache.struts.action.ActionForward; |
34 | |
import org.apache.struts.action.ActionMapping; |
35 | |
import org.kuali.rice.core.xml.dto.AttributeSet; |
36 | |
import org.kuali.rice.kew.doctype.bo.DocumentType; |
37 | |
import org.kuali.rice.kew.doctype.service.DocumentTypeService; |
38 | |
import org.kuali.rice.kew.engine.node.RouteNode; |
39 | |
import org.kuali.rice.kew.engine.node.service.RouteNodeService; |
40 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
41 | |
import org.kuali.rice.kew.util.KEWConstants; |
42 | |
import org.kuali.rice.kew.web.KewKualiAction; |
43 | |
import org.kuali.rice.kim.bo.impl.KimAttributes; |
44 | |
import org.kuali.rice.kim.bo.role.dto.KimPermissionInfo; |
45 | |
import org.kuali.rice.kim.bo.role.dto.KimPermissionTemplateInfo; |
46 | |
import org.kuali.rice.kim.bo.role.dto.KimResponsibilityInfo; |
47 | |
import org.kuali.rice.kim.bo.role.dto.KimRoleInfo; |
48 | |
import org.kuali.rice.kim.bo.role.impl.KimPermissionImpl; |
49 | |
import org.kuali.rice.kim.bo.role.impl.KimResponsibilityImpl; |
50 | |
import org.kuali.rice.kim.service.KIMServiceLocator; |
51 | |
import org.kuali.rice.kim.service.PermissionService; |
52 | |
import org.kuali.rice.kim.service.ResponsibilityService; |
53 | |
import org.kuali.rice.kim.service.RoleManagementService; |
54 | |
import org.kuali.rice.kim.util.KimConstants; |
55 | |
import org.kuali.rice.kns.service.DataDictionaryService; |
56 | |
import org.kuali.rice.kns.service.DocumentHelperService; |
57 | |
import org.kuali.rice.kns.service.KNSServiceLocatorWeb; |
58 | |
import org.kuali.rice.kns.service.MaintenanceDocumentDictionaryService; |
59 | |
import org.kuali.rice.kns.util.GlobalVariables; |
60 | |
import org.kuali.rice.kns.util.KNSConstants; |
61 | |
|
62 | |
|
63 | |
|
64 | |
|
65 | |
|
66 | |
|
67 | |
|
68 | 0 | public class DocumentConfigurationViewAction extends KewKualiAction { |
69 | |
|
70 | 0 | private static final Logger LOG = Logger.getLogger(DocumentConfigurationViewAction.class); |
71 | |
|
72 | |
private PermissionService permissionService; |
73 | |
private RoleManagementService roleService; |
74 | |
private ResponsibilityService responsibilityService; |
75 | |
private DocumentTypeService documentTypeService; |
76 | |
private DataDictionaryService dataDictionaryService; |
77 | |
private RouteNodeService routeNodeService; |
78 | |
private MaintenanceDocumentDictionaryService maintenanceDocumentDictionaryService; |
79 | |
private DocumentHelperService documentHelperService; |
80 | |
|
81 | |
public ActionForward start(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
82 | 0 | populateForm( (DocumentConfigurationViewForm)form ); |
83 | 0 | return mapping.findForward("basic"); |
84 | |
} |
85 | |
|
86 | |
protected void populateForm( DocumentConfigurationViewForm form ) { |
87 | 0 | if ( StringUtils.isNotEmpty( form.getDocumentTypeName() ) ) { |
88 | 0 | form.setDocumentType( getDocumentTypeService().findByName( form.getDocumentTypeName() ) ); |
89 | 0 | if ( form.getDocumentType() != null ) { |
90 | 0 | form.getDocumentType().getChildrenDocTypes(); |
91 | 0 | form.setAttributeLabels( new HashMap<String, String>() ); |
92 | 0 | populateRelatedDocuments( form ); |
93 | 0 | populatePermissions( form ); |
94 | 0 | populateRoutingResponsibilities( form ); |
95 | 0 | populateRoutingExceptionResponsibility( form ); |
96 | 0 | checkPermissions( form ); |
97 | |
} |
98 | |
} |
99 | 0 | } |
100 | |
|
101 | |
protected void checkPermissions( DocumentConfigurationViewForm form ) { |
102 | 0 | String docTypeDocumentType = getMaintenanceDocumentDictionaryService().getDocumentTypeName(DocumentType.class); |
103 | |
try { |
104 | 0 | if ((docTypeDocumentType != null) && getDocumentHelperService().getDocumentAuthorizer(docTypeDocumentType).canInitiate(docTypeDocumentType, GlobalVariables.getUserSession().getPerson())) { |
105 | 0 | form.setCanInitiateDocumentTypeDocument( true ); |
106 | |
} |
107 | 0 | } catch (Exception ex) { |
108 | |
|
109 | 0 | LOG.error( "Unable to check DocumentType initiation permission for "+ docTypeDocumentType, ex ); |
110 | 0 | } |
111 | 0 | String permissionDocumentType = getMaintenanceDocumentDictionaryService().getDocumentTypeName(KimPermissionImpl.class); |
112 | |
try { |
113 | 0 | if ((permissionDocumentType != null) && getDocumentHelperService().getDocumentAuthorizer(permissionDocumentType).canInitiate(permissionDocumentType, GlobalVariables.getUserSession().getPerson())) { |
114 | 0 | form.setCanInitiatePermissionDocument( true ); |
115 | |
} |
116 | 0 | } catch (Exception ex) { |
117 | |
|
118 | 0 | LOG.error( "Unable to check Permission initiation permission for "+ permissionDocumentType, ex ); |
119 | 0 | } |
120 | 0 | String responsibilityDocumentType = getMaintenanceDocumentDictionaryService().getDocumentTypeName(KimResponsibilityImpl.class); |
121 | |
try { |
122 | 0 | if ((responsibilityDocumentType != null) && getDocumentHelperService().getDocumentAuthorizer(responsibilityDocumentType).canInitiate(responsibilityDocumentType, GlobalVariables.getUserSession().getPerson())) { |
123 | 0 | form.setCanInitiateResponsibilityDocument( true ); |
124 | |
} |
125 | 0 | } catch (Exception ex) { |
126 | |
|
127 | 0 | LOG.error( "Unable to check Responsibility initiation permission for "+ responsibilityDocumentType, ex ); |
128 | 0 | } |
129 | 0 | } |
130 | |
|
131 | |
@SuppressWarnings("unchecked") |
132 | |
public void populateRelatedDocuments( DocumentConfigurationViewForm form ) { |
133 | 0 | form.setParentDocumentType( form.getDocumentType().getParentDocType() ); |
134 | 0 | form.setChildDocumentTypes( new ArrayList<DocumentType>( form.getDocumentType().getChildrenDocTypes() ) ); |
135 | 0 | } |
136 | |
|
137 | |
public void populatePermissions( DocumentConfigurationViewForm form ) { |
138 | |
|
139 | 0 | DocumentType docType = form.getDocumentType(); |
140 | 0 | Map<String,List<KimRoleInfo>> permRoles = new HashMap<String, List<KimRoleInfo>>(); |
141 | 0 | Map<String,String> searchCriteria = new HashMap<String,String>(); |
142 | 0 | searchCriteria.put("attributeName", "documentTypeName" ); |
143 | 0 | searchCriteria.put("active", "Y"); |
144 | |
|
145 | 0 | Set<String> seenDocumentPermissions = new HashSet<String>(); |
146 | 0 | while ( docType != null) { |
147 | 0 | String documentTypeName = docType.getName(); |
148 | 0 | searchCriteria.put("detailCriteria", |
149 | |
KimConstants.AttributeConstants.DOCUMENT_TYPE_NAME+"="+docType.getName() |
150 | |
); |
151 | 0 | List<KimPermissionInfo> perms = getPermissionService().lookupPermissions( searchCriteria, true ); |
152 | 0 | for ( KimPermissionInfo perm : perms ) { |
153 | 0 | List<String> roleIds = getPermissionService().getRoleIdsForPermissions(Collections.singletonList(perm)); |
154 | 0 | permRoles.put( perm.getPermissionId(), getRoleService().getRoles(roleIds) ); |
155 | 0 | for ( String attributeName : perm.getDetails().keySet() ) { |
156 | 0 | addAttributeLabel(form, attributeName); |
157 | |
} |
158 | 0 | } |
159 | |
|
160 | 0 | if ( perms.size() > 0 || documentTypeName.equals( form.getDocumentTypeName() ) ) { |
161 | 0 | ArrayList<PermissionForDisplay> dispPerms = new ArrayList<PermissionForDisplay>( perms.size() ); |
162 | 0 | for ( KimPermissionInfo perm : perms ) { |
163 | 0 | if ( perm.getDetails().size() == 1 ) { |
164 | |
|
165 | 0 | if ( seenDocumentPermissions.contains(perm.getTemplate().getNamespaceCode()+"|"+perm.getTemplate().getName()) ) { |
166 | 0 | dispPerms.add( new PermissionForDisplay( perm, true ) ); |
167 | |
} else { |
168 | 0 | dispPerms.add( new PermissionForDisplay( perm, false ) ); |
169 | 0 | seenDocumentPermissions.add(perm.getTemplate().getNamespaceCode()+"|"+perm.getTemplate().getName()); |
170 | |
} |
171 | |
} else { |
172 | |
|
173 | 0 | dispPerms.add( new PermissionForDisplay( perm, false ) ); |
174 | |
} |
175 | |
} |
176 | 0 | form.setPermissionsForDocumentType(documentTypeName, dispPerms ); |
177 | 0 | form.addDocumentType(documentTypeName); |
178 | |
} |
179 | 0 | docType = docType.getParentDocType(); |
180 | 0 | } |
181 | |
|
182 | 0 | form.setPermissionRoles( permRoles ); |
183 | 0 | } |
184 | |
|
185 | |
protected void populateRoutingExceptionResponsibility( DocumentConfigurationViewForm form ) { |
186 | 0 | Map<String,String> searchCriteria = new HashMap<String,String>(); |
187 | 0 | searchCriteria.put("template.namespaceCode", KNSConstants.KUALI_RICE_WORKFLOW_NAMESPACE); |
188 | 0 | searchCriteria.put("template.name", KEWConstants.EXCEPTION_ROUTING_RESPONSIBILITY_TEMPLATE_NAME); |
189 | 0 | searchCriteria.put("active", "Y"); |
190 | 0 | DocumentType docType = form.getDocumentType(); |
191 | 0 | List<ResponsibilityForDisplay> responsibilities = new ArrayList<ResponsibilityForDisplay>(); |
192 | 0 | while ( docType != null) { |
193 | |
|
194 | 0 | searchCriteria.put("detailCriteria", |
195 | |
KimConstants.AttributeConstants.DOCUMENT_TYPE_NAME+"="+docType.getName() |
196 | |
); |
197 | 0 | List<? extends KimResponsibilityInfo> resps = getResponsibilityService().lookupResponsibilityInfo( searchCriteria, true ); |
198 | |
|
199 | 0 | for ( KimResponsibilityInfo r : resps ) { |
200 | 0 | if ( responsibilities.isEmpty() ) { |
201 | 0 | responsibilities.add( new ResponsibilityForDisplay( r, false ) ); |
202 | |
} else { |
203 | 0 | responsibilities.add( new ResponsibilityForDisplay( r, true ) ); |
204 | |
} |
205 | |
} |
206 | 0 | docType = docType.getParentDocType(); |
207 | 0 | } |
208 | 0 | form.setExceptionResponsibilities( responsibilities ); |
209 | 0 | for ( ResponsibilityForDisplay responsibility : responsibilities ) { |
210 | 0 | List<String> roleIds = getResponsibilityService().getRoleIdsForResponsibility(responsibility.getResp(), null); |
211 | 0 | form.getResponsibilityRoles().put( responsibility.getResponsibilityId(), getRoleService().getRoles(roleIds) ); |
212 | 0 | } |
213 | 0 | } |
214 | |
|
215 | |
protected void addAttributeLabel( DocumentConfigurationViewForm form, String attributeName ) { |
216 | 0 | if ( !form.getAttributeLabels().containsKey(attributeName) ) { |
217 | 0 | form.getAttributeLabels().put(attributeName, |
218 | |
getDataDictionaryService().getAttributeLabel(KimAttributes.class, attributeName) ); |
219 | |
} |
220 | 0 | } |
221 | |
|
222 | |
|
223 | |
|
224 | |
|
225 | |
|
226 | |
|
227 | |
|
228 | |
protected RouteNode flattenSplitNode( RouteNode splitNode, Map<String,RouteNode> nodes ) { |
229 | 0 | nodes.put( splitNode.getRouteNodeName(), splitNode ); |
230 | 0 | RouteNode joinNode = null; |
231 | |
|
232 | 0 | for ( RouteNode nextNode : splitNode.getNextNodes() ) { |
233 | 0 | joinNode = flattenRouteNodes(nextNode, nodes); |
234 | |
} |
235 | |
|
236 | 0 | if ( joinNode != null ) { |
237 | 0 | nodes.put( joinNode.getRouteNodeName(), joinNode ); |
238 | |
} |
239 | 0 | return joinNode; |
240 | |
} |
241 | |
|
242 | |
|
243 | |
|
244 | |
|
245 | |
|
246 | |
|
247 | |
protected RouteNode flattenRouteNodes( RouteNode node, Map<String,RouteNode> nodes ) { |
248 | 0 | RouteNode lastProcessedNode = null; |
249 | |
|
250 | 0 | if ( nodes.containsKey(node.getRouteNodeName()) ) { |
251 | 0 | return node; |
252 | |
} |
253 | |
|
254 | 0 | if ( node.getNodeType().contains( "SplitNode" ) ) { |
255 | 0 | lastProcessedNode = flattenSplitNode(node, nodes); |
256 | |
|
257 | 0 | for ( RouteNode nextNode : lastProcessedNode.getNextNodes() ) { |
258 | 0 | lastProcessedNode = flattenRouteNodes(nextNode, nodes); |
259 | |
} |
260 | 0 | } else if ( node.getNodeType().contains( "JoinNode" ) ) { |
261 | 0 | lastProcessedNode = node; |
262 | |
} else { |
263 | |
|
264 | 0 | nodes.put(node.getRouteNodeName(), node); |
265 | 0 | for ( RouteNode nextNode : node.getNextNodes() ) { |
266 | 0 | lastProcessedNode = flattenRouteNodes(nextNode, nodes); |
267 | |
} |
268 | |
} |
269 | 0 | return lastProcessedNode; |
270 | |
} |
271 | |
|
272 | |
@SuppressWarnings("unchecked") |
273 | |
public void populateRoutingResponsibilities( DocumentConfigurationViewForm form ) { |
274 | |
|
275 | |
|
276 | |
|
277 | |
|
278 | 0 | RouteNode rootNode = ((List<org.kuali.rice.kew.engine.node.Process>)form.getDocumentType().getProcesses()).get(0).getInitialRouteNode(); |
279 | 0 | LinkedHashMap<String, RouteNode> routeNodeMap = new LinkedHashMap<String, RouteNode>(); |
280 | 0 | flattenRouteNodes(rootNode, routeNodeMap); |
281 | |
|
282 | 0 | form.setRouteNodes( new ArrayList<RouteNode>( routeNodeMap.values() ) ); |
283 | |
|
284 | |
|
285 | |
|
286 | |
|
287 | 0 | Map<String,String> searchCriteria = new HashMap<String,String>(); |
288 | 0 | searchCriteria.put("template.namespaceCode", KNSConstants.KUALI_RICE_WORKFLOW_NAMESPACE); |
289 | 0 | searchCriteria.put("template.name", KEWConstants.DEFAULT_RESPONSIBILITY_TEMPLATE_NAME); |
290 | 0 | searchCriteria.put("active", "Y"); |
291 | 0 | DocumentType docType = form.getDocumentType(); |
292 | 0 | Set<KimResponsibilityInfo> responsibilities = new HashSet<KimResponsibilityInfo>(); |
293 | 0 | Map<String,List<ResponsibilityForDisplay>> nodeToRespMap = new LinkedHashMap<String, List<ResponsibilityForDisplay>>(); |
294 | 0 | while ( docType != null) { |
295 | |
|
296 | 0 | searchCriteria.put("detailCriteria", |
297 | |
KimConstants.AttributeConstants.DOCUMENT_TYPE_NAME+"="+docType.getName() |
298 | |
); |
299 | 0 | List<? extends KimResponsibilityInfo> resps = getResponsibilityService().lookupResponsibilityInfo( searchCriteria, true ); |
300 | |
|
301 | 0 | for ( KimResponsibilityInfo r : resps ) { |
302 | 0 | String routeNodeName = r.getDetails().get(KimConstants.AttributeConstants.ROUTE_NODE_NAME); |
303 | 0 | if ( StringUtils.isNotBlank(routeNodeName) ) { |
304 | 0 | if ( !nodeToRespMap.containsKey( routeNodeName ) ) { |
305 | 0 | nodeToRespMap.put(routeNodeName, new ArrayList<ResponsibilityForDisplay>() ); |
306 | 0 | nodeToRespMap.get(routeNodeName).add( new ResponsibilityForDisplay( r, false ) ); |
307 | |
} else { |
308 | |
|
309 | |
|
310 | |
|
311 | 0 | if ( nodeToRespMap.get(routeNodeName).get(0).getDetails().get( KimConstants.AttributeConstants.DOCUMENT_TYPE_NAME ).equals(docType.getName() ) ) { |
312 | 0 | nodeToRespMap.get(routeNodeName).add( new ResponsibilityForDisplay( r, false ) ); |
313 | |
} else { |
314 | 0 | nodeToRespMap.get(routeNodeName).add( new ResponsibilityForDisplay( r, true ) ); |
315 | |
} |
316 | |
} |
317 | 0 | responsibilities.add(r); |
318 | |
} |
319 | 0 | } |
320 | 0 | docType = docType.getParentDocType(); |
321 | 0 | } |
322 | 0 | form.setResponsibilityMap( nodeToRespMap ); |
323 | |
|
324 | 0 | Map<String,List<KimRoleInfo>> respToRoleMap = new HashMap<String, List<KimRoleInfo>>(); |
325 | 0 | for ( KimResponsibilityInfo responsibility : responsibilities ) { |
326 | 0 | List<String> roleIds = getResponsibilityService().getRoleIdsForResponsibility(responsibility, null); |
327 | 0 | respToRoleMap.put( responsibility.getResponsibilityId(), getRoleService().getRoles(roleIds) ); |
328 | 0 | } |
329 | 0 | form.setResponsibilityRoles( respToRoleMap ); |
330 | 0 | } |
331 | |
|
332 | |
|
333 | |
|
334 | |
|
335 | |
@Override |
336 | |
public ActionForward toggleTab(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
337 | |
|
338 | 0 | ActionForward actionForward = super.toggleTab(mapping, form, request, response); |
339 | 0 | populateForm( (DocumentConfigurationViewForm)form ); |
340 | 0 | return actionForward; |
341 | |
} |
342 | |
|
343 | |
|
344 | |
|
345 | |
|
346 | |
public static class ResponsibilityForDisplay { |
347 | |
|
348 | |
private KimResponsibilityInfo resp; |
349 | 0 | private boolean overridden = false; |
350 | |
|
351 | 0 | public ResponsibilityForDisplay( KimResponsibilityInfo resp, boolean overridden ) { |
352 | 0 | this.resp = resp; |
353 | 0 | this.overridden = overridden; |
354 | 0 | } |
355 | |
|
356 | |
|
357 | |
|
358 | |
|
359 | |
KimResponsibilityInfo getResp() { |
360 | 0 | return this.resp; |
361 | |
} |
362 | |
|
363 | |
public boolean isOverridden() { |
364 | 0 | return this.overridden; |
365 | |
} |
366 | |
|
367 | |
public void setOverridden(boolean overridden) { |
368 | 0 | this.overridden = overridden; |
369 | 0 | } |
370 | |
|
371 | |
public AttributeSet getDetails() { |
372 | 0 | return this.resp.getDetails(); |
373 | |
} |
374 | |
|
375 | |
public String getName() { |
376 | 0 | return this.resp.getName(); |
377 | |
} |
378 | |
|
379 | |
public String getNamespaceCode() { |
380 | 0 | return this.resp.getNamespaceCode(); |
381 | |
} |
382 | |
|
383 | |
public String getResponsibilityId() { |
384 | 0 | return this.resp.getResponsibilityId(); |
385 | |
} |
386 | |
} |
387 | |
|
388 | 0 | public static class PermissionForDisplay { |
389 | |
private KimPermissionInfo perm; |
390 | 0 | private boolean overridden = false; |
391 | |
|
392 | 0 | public PermissionForDisplay( KimPermissionInfo perm, boolean overridden ) { |
393 | 0 | this.perm = perm; |
394 | 0 | this.overridden = overridden; |
395 | 0 | } |
396 | |
public boolean isOverridden() { |
397 | 0 | return this.overridden; |
398 | |
} |
399 | |
|
400 | |
public void setOverridden(boolean overridden) { |
401 | 0 | this.overridden = overridden; |
402 | 0 | } |
403 | |
public AttributeSet getDetails() { |
404 | 0 | return this.perm.getDetails(); |
405 | |
} |
406 | |
public String getName() { |
407 | 0 | return this.perm.getName(); |
408 | |
} |
409 | |
public String getNamespaceCode() { |
410 | 0 | return this.perm.getNamespaceCode(); |
411 | |
} |
412 | |
public String getPermissionId() { |
413 | 0 | return this.perm.getPermissionId(); |
414 | |
} |
415 | |
public KimPermissionTemplateInfo getTemplate() { |
416 | 0 | return this.perm.getTemplate(); |
417 | |
} |
418 | |
|
419 | |
} |
420 | |
|
421 | |
|
422 | |
|
423 | |
|
424 | |
public PermissionService getPermissionService() { |
425 | 0 | if ( permissionService == null ) { |
426 | 0 | permissionService = KIMServiceLocator.getPermissionService(); |
427 | |
} |
428 | 0 | return permissionService; |
429 | |
} |
430 | |
|
431 | |
|
432 | |
|
433 | |
|
434 | |
public RoleManagementService getRoleService() { |
435 | 0 | if ( roleService == null ) { |
436 | 0 | roleService = KIMServiceLocator.getRoleManagementService(); |
437 | |
} |
438 | 0 | return roleService; |
439 | |
} |
440 | |
|
441 | |
|
442 | |
|
443 | |
|
444 | |
public ResponsibilityService getResponsibilityService() { |
445 | 0 | if ( responsibilityService == null ) { |
446 | 0 | responsibilityService = KIMServiceLocator.getResponsibilityService(); |
447 | |
} |
448 | 0 | return responsibilityService; |
449 | |
} |
450 | |
|
451 | |
|
452 | |
|
453 | |
|
454 | |
public DocumentTypeService getDocumentTypeService() { |
455 | 0 | if ( documentTypeService == null ) { |
456 | 0 | documentTypeService = KEWServiceLocator.getDocumentTypeService(); |
457 | |
} |
458 | 0 | return documentTypeService; |
459 | |
} |
460 | |
|
461 | |
public DataDictionaryService getDataDictionaryService() { |
462 | 0 | if(dataDictionaryService == null){ |
463 | 0 | dataDictionaryService = KNSServiceLocatorWeb.getDataDictionaryService(); |
464 | |
} |
465 | 0 | return dataDictionaryService; |
466 | |
} |
467 | |
|
468 | |
public RouteNodeService getRouteNodeService() { |
469 | 0 | if ( routeNodeService == null ) { |
470 | 0 | routeNodeService = KEWServiceLocator.getRouteNodeService(); |
471 | |
} |
472 | 0 | return routeNodeService; |
473 | |
} |
474 | |
|
475 | |
public DocumentHelperService getDocumentHelperService() { |
476 | 0 | if(documentHelperService == null){ |
477 | 0 | documentHelperService = KNSServiceLocatorWeb.getDocumentHelperService(); |
478 | |
} |
479 | 0 | return documentHelperService; |
480 | |
} |
481 | |
|
482 | |
public MaintenanceDocumentDictionaryService getMaintenanceDocumentDictionaryService() { |
483 | 0 | if(maintenanceDocumentDictionaryService == null){ |
484 | 0 | maintenanceDocumentDictionaryService = KNSServiceLocatorWeb.getMaintenanceDocumentDictionaryService(); |
485 | |
} |
486 | 0 | return maintenanceDocumentDictionaryService; |
487 | |
} |
488 | |
|
489 | |
} |