/** * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file, * You can obtain one at http://mozilla.org/MPL/2.0/. */ package org.mifosplatform.accounting.glaccount.service; import java.util.List; import org.mifosplatform.accounting.glaccount.data.GLAccountData; import org.mifosplatform.accounting.glaccount.data.GLAccountDataForLookup; import org.mifosplatform.accounting.glaccount.domain.GLAccountType; import org.mifosplatform.accounting.journalentry.data.JournalEntryAssociationParametersData; public interface GLAccountReadPlatformService { List<GLAccountData> retrieveAllGLAccounts(Integer accountClassification, String searchParam, Integer usage, Boolean manualTransactionsAllowed, Boolean disabled, JournalEntryAssociationParametersData associationParametersData); GLAccountData retrieveGLAccountById(long glAccountId, JournalEntryAssociationParametersData associationParametersData); List<GLAccountData> retrieveAllEnabledDetailGLAccounts(); List<GLAccountData> retrieveAllEnabledDetailGLAccounts(GLAccountType accountType); List<GLAccountData> retrieveAllEnabledHeaderGLAccounts(GLAccountType accountType); GLAccountData retrieveNewGLAccountDetails(final Integer type); List<GLAccountDataForLookup> retrieveAccountsByTagId(final Long ruleId, final Integer transactionType); }