View Javadoc
1   /*
2    * Copyright 2011 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.ole.select.document.validation.event;
17  
18  import org.kuali.ole.select.businessobject.OleInvoiceItem;
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 OleDiscountInvoiceEvent extends KualiDocumentEventBase {
26  
27      private OleInvoiceItem payItem;
28  
29      protected OleDiscountInvoiceEvent(String errorPathPrefix, Document document) {
30          super("Creating Note Tag" + getDocumentId(document), errorPathPrefix, document);
31      }
32  
33      public OleDiscountInvoiceEvent(Document document, OleInvoiceItem payItem) {
34          this("", document);
35          this.payItem = payItem;
36      }
37  
38      @Override
39      public Class getRuleInterfaceClass() {
40          return OleValidationRuleBase.class;
41      }
42  
43      @Override
44      public boolean invokeRuleMethod(BusinessRule rule) {
45          return ((OleValidationRule) rule).processCustomAddDiscountInvoiceBusinessRules(document, payItem);
46      }
47  
48      public OleInvoiceItem getPayItem() {
49          return payItem;
50      }
51  
52      public void setPayItem(OleInvoiceItem payItem) {
53          this.payItem = payItem;
54      }
55  
56  
57  }