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.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 ForeignCurrencyPOEvent extends KualiDocumentEventBase {
26  
27      private OlePurchaseOrderItem purItem;
28  
29  
30      protected ForeignCurrencyPOEvent(String errorPathPrefix, Document document) {
31          super("Creating Note Tag" + getDocumentId(document), errorPathPrefix, document);
32      }
33  
34      public ForeignCurrencyPOEvent(Document document, OlePurchaseOrderItem purItem) {
35          this("", document);
36          this.purItem = purItem;
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).processCustomForeignCurrencyPurchaseOrderBusinessRules(document, purItem);
47      }
48  
49      public OlePurchaseOrderItem getPurItem() {
50          return purItem;
51      }
52  
53      public void setPurItem(OlePurchaseOrderItem purItem) {
54          this.purItem = purItem;
55      }
56  
57  
58  }