001 /*
002 * Copyright 2011 The Kuali Foundation.
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016 package org.kuali.kfs.module.endow.report.service;
017
018 import java.util.List;
019
020 import org.kuali.kfs.module.endow.report.util.AssetStatementReportDataHolder;
021
022 public interface AssetStatementReportService extends EndowmentReportService {
023
024 /**
025 * Gets the trial balance data using selected kemids
026 *
027 * @param kemids
028 * @param monthEndDate
029 * @param endownmentOption
030 * @param reportOption
031 * @param closedIndicator
032 * @return
033 */
034 public List<AssetStatementReportDataHolder> getAssetStatementReportsByKemidByIds(List<String> kemids, String monthEndDate, String endownmentOption, String reportOption, String closedIndicator);
035
036 /**
037 * Gets the trial balance data for all kemids
038 *
039 * @param endownmentOption
040 * @return
041 */
042 public List<AssetStatementReportDataHolder> getAssetStatementReportForAllKemids(String monthEndDate, String endownmentOption, String reportOption, String closedIndicator);
043
044 /**
045 * Gets the trial balance data using selected criteria
046 *
047 * @param benefittingOrganziationCampuses
048 * @param benefittingOrganziationCharts
049 * @param benefittingOrganziations
050 * @param typeCodes
051 * @param purposeCodes
052 * @param combineGroupCodes
053 * @param monthEndDate
054 * @param endowmnetOption
055 * @param reportOption
056 * @param closedIndicator
057 * @return
058 */
059 public List<AssetStatementReportDataHolder> getAssetStatementReportsByOtherCriteria(
060 List<String> benefittingOrganziationCampuses,
061 List<String> benefittingOrganziationCharts,
062 List<String> benefittingOrganziations,
063 List<String> typeCodes,
064 List<String> purposeCodes,
065 List<String> combineGroupCodes,
066 String monthEndDate,
067 String endowmnetOption,
068 String reportOption,
069 String closedIndicator);
070 }