01: /*
02: * Copyright 2005-2006 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
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.module.gl.dao;
17:
18: import java.util.Date;
19:
20: import org.kuali.module.gl.bo.Transaction;
21:
22: /**
23: * A surprisingly small DAO interface that declares methods to help Entries interact with the database
24: */
25: public interface EntryDao {
26: /**
27: * Add a new transaction to the database
28: *
29: * @param t the transaction to save
30: * @param postDate the officially reported posting date
31: */
32: public void addEntry(Transaction t, Date postDate);
33:
34: /**
35: * Get the max sequence number currently used for a transaction
36: *
37: * @param t the transaction to check
38: * @return the max sequence number
39: */
40: public int getMaxSequenceNumber(Transaction t);
41:
42: /**
43: * Purge the entry table by chart/year
44: *
45: * @param chart the chart of accounts code of entries to purge
46: * @param year the university fiscal year of entries to purge
47: */
48: public void purgeYearByChart(String chart, int year);
49: }
|