View Javadoc
1   /*
2    * Copyright 2013 The Kuali Foundation.
3    *
4    * Licensed under the Educational Community License, Version 1.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/ecl1.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.ole.select.document.validation.event;
17  
18  import org.kuali.ole.select.businessobject.OlePurchaseOrderItem;
19  import org.kuali.ole.select.document.validation.impl.OleValidationRule;
20  import org.kuali.ole.select.document.validation.impl.OleValidationRuleBase;
21  import org.kuali.rice.krad.document.Document;
22  import org.kuali.rice.krad.rules.rule.BusinessRule;
23  import org.kuali.rice.krad.rules.rule.event.KualiDocumentEventBase;
24  
25  public class CopiesPurchaseOrderEvent extends KualiDocumentEventBase {
26  
27  
28      protected CopiesPurchaseOrderEvent(String errorPathPrefix, Document document) {
29          super("Creating Copies Tag" + getDocumentId(document), errorPathPrefix, document);
30      }
31  
32      public CopiesPurchaseOrderEvent(Document document, OlePurchaseOrderItem olePurchaseOrderItem) {
33  
34          this("", document);
35          this.olePurchaseOrderItem = olePurchaseOrderItem;
36      }
37  
38      private OlePurchaseOrderItem olePurchaseOrderItem;
39  
40      @Override
41      public Class getRuleInterfaceClass() {
42          return OleValidationRuleBase.class;
43      }
44  
45      @Override
46      public boolean invokeRuleMethod(BusinessRule rule) {
47          return ((OleValidationRule) rule).processCustomAddCopiesPurchaseOrderBusinessRules(document, olePurchaseOrderItem);
48      }
49  
50  
51  }