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.krad.uif.service.impl;
17  
18  import org.kuali.rice.krad.bo.AdHocRoutePerson;
19  import org.kuali.rice.krad.bo.AdHocRouteWorkgroup;
20  import org.kuali.rice.krad.rules.rule.event.AddAdHocRoutePersonEvent;
21  import org.kuali.rice.krad.rules.rule.event.AddAdHocRouteWorkgroupEvent;
22  import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
23  import org.kuali.rice.krad.service.KualiRuleService;
24  import org.kuali.rice.krad.uif.container.CollectionGroup;
25  import org.kuali.rice.krad.uif.view.View;
26  import org.kuali.rice.krad.uif.view.ViewModel;
27  import org.kuali.rice.krad.web.form.DocumentFormBase;
28  
29  /**
30   * @author Kuali Rice Team (rice.collab@kuali.org)
31   */
32  public class DocumentViewHelperServiceImpl extends ViewHelperServiceImpl {
33  
34      private transient KualiRuleService kualiRuleService;
35  
36      /**
37       * Performs validation on the new collection line before it is added to the
38       * corresponding collection
39       *
40       * @param view view instance that the action was taken on
41       * @param collectionGroup collection group component for the collection
42       * @param addLine new line instance to validate
43       * @param model object instance that contains the views data
44       * @return true if the line is valid and it should be added to the
45       *         collection, false if it was not valid and should not be added to
46       *         the collection
47       */
48      @Override
49      protected boolean performAddLineValidation(ViewModel model, Object addLine, String collectionId,
50                  String collectionPath) {
51          boolean isValidLine = super.performAddLineValidation(model, addLine, collectionId, collectionPath);
52  
53          if (model instanceof DocumentFormBase && addLine instanceof AdHocRoutePerson) {
54              DocumentFormBase form = (DocumentFormBase) model;
55              isValidLine &= getKualiRuleService()
56                      .applyRules(new AddAdHocRoutePersonEvent(form.getDocument(), (AdHocRoutePerson) addLine));
57          } else if (model instanceof DocumentFormBase && addLine instanceof AdHocRouteWorkgroup) {
58              DocumentFormBase form = (DocumentFormBase) model;
59              isValidLine &= getKualiRuleService()
60                      .applyRules(new AddAdHocRouteWorkgroupEvent(form.getDocument(), (AdHocRouteWorkgroup) addLine));
61          }
62  
63          return isValidLine;
64      }
65  
66      /**
67       * Gets the Kuali rule service
68       *
69       * @return Kuali rule service
70       */
71      protected KualiRuleService getKualiRuleService() {
72          if (kualiRuleService == null) {
73              kualiRuleService = KRADServiceLocatorWeb.getKualiRuleService();
74          }
75  
76          return this.kualiRuleService;
77      }
78  }