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