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  /*
17   * Created on Sep 1, 2004
18   *
19   */
20  package org.kuali.ole.pdp.dataaccess;
21  
22  import java.sql.Timestamp;
23  import java.util.Iterator;
24  import java.util.List;
25  
26  import org.kuali.ole.pdp.businessobject.PaymentProcess;
27  
28  
29  /**
30   * @author jsissom
31   */
32  public interface FormatPaymentDao {
33      /**
34       * This method mark payments for format
35       * @param proc
36       * @param customers
37       * @param paydate
38       * @param paymentTypes
39       */
40      public Iterator markPaymentsForFormat(List customers, Timestamp paydate, String paymentTypes);
41  
42      /**
43       * This method unmark payments that were marked for format.
44       * @param proc
45       */
46      public Iterator unmarkPaymentsForFormat(PaymentProcess proc);
47  }