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 OLEInvoiceSubscriptionOverlayValidationEvent extends KualiDocumentEventBase {
26  
27      private OleInvoiceItem invoiceItem;
28  
29  
30      protected OLEInvoiceSubscriptionOverlayValidationEvent(String errorPathPrefix, Document document) {
31          super("Creating Note Tag" + getDocumentId(document), errorPathPrefix, document);
32      }
33  
34      public OLEInvoiceSubscriptionOverlayValidationEvent(Document document, OleInvoiceItem invoiceItem) {
35  
36          this("", document);
37          this.invoiceItem = invoiceItem;
38      }
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).processInvoiceSubscriptionOverlayBusinessRules(document, invoiceItem);
48      }
49  
50      public OleInvoiceItem getInvoiceItem() {
51          return invoiceItem;
52      }
53  
54      public void setInvoiceItem(OleInvoiceItem invoiceItem) {
55          this.invoiceItem = invoiceItem;
56      }
57  }