01: /*
02: * Copyright 2007 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.kfs.service;
17:
18: import java.util.List;
19:
20: import org.kuali.kfs.bo.AccountingLine;
21:
22: /**
23: * This interface defines methods that an AccountingLine service implementation must provide.
24: */
25: public interface AccountingLineService {
26: /**
27: * Retrieves a list of accounting lines for a given group (i.e. Target/Source) given the associated document id.
28: *
29: * @param clazz
30: * @param documentHeaderId
31: * @return A list of AccountingLines... to be casted to the appropriate class.
32: * @throws Exception
33: */
34: public List getByDocumentHeaderId(Class clazz,
35: String documentHeaderId);
36:
37: /**
38: * Saves an accounting line.
39: *
40: * @param line
41: * @return The saved accounting line
42: * @throws Exception
43: */
44: public AccountingLine save(AccountingLine line);
45:
46: /**
47: * Deletes an accounting line.
48: *
49: * @param line
50: * @throws Exception
51: */
52: public void deleteAccountingLine(AccountingLine line);
53: }
|