View Javadoc
1   /*
2    * Copyright 2007 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.module.purap.document.service.impl;
17  
18  import org.kuali.ole.module.purap.document.service.*;
19  import org.kuali.ole.module.purap.service.PurapAccountingService;
20  import org.kuali.ole.vnd.document.service.VendorService;
21  import org.kuali.rice.kns.service.DataDictionaryService;
22  
23  
24  /**
25   * Performs initial population of the credit memo document.
26   */
27  public class CreditMemoCreateServiceImpl implements CreditMemoCreateService {
28      private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(CreditMemoServiceImpl.class);
29      private VendorService vendorService;
30      private CreditMemoService creditMemoService;
31      private AccountsPayableService accountsPayableService;
32      private PurapService purapService;
33      private PurchaseOrderService purchaseOrderService;
34      private PaymentRequestService paymentRequestService;
35      private DataDictionaryService dataDictionaryService;
36      private PurapAccountingService purapAccountingService;
37  
38      public void setCreditMemoService(CreditMemoService creditMemoService) {
39          this.creditMemoService = creditMemoService;
40      }
41  
42      public void setAccountsPayableService(AccountsPayableService accountsPayableService) {
43          this.accountsPayableService = accountsPayableService;
44      }
45  
46      public void setPurapService(PurapService purapService) {
47          this.purapService = purapService;
48      }
49  
50      public void setPurchaseOrderService(PurchaseOrderService purchaseOrderService) {
51          this.purchaseOrderService = purchaseOrderService;
52      }
53  
54      public void setPaymentRequestService(PaymentRequestService paymentRequestService) {
55          this.paymentRequestService = paymentRequestService;
56      }
57  
58      public void setPurapAccountingService(PurapAccountingService purapAccountingService) {
59          this.purapAccountingService = purapAccountingService;
60      }
61  
62  
63  }
64