/* * The Kuali Financial System, a comprehensive financial management system for higher education. * * Copyright 2005-2014 The Kuali Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.kuali.kfs.module.ld.businessobject.inquiry; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Properties; import org.kuali.kfs.gl.Constant; import org.kuali.kfs.module.ld.LaborPropertyConstants; import org.kuali.kfs.module.ld.businessobject.LedgerBalance; import org.kuali.kfs.sys.KFSConstants; import org.kuali.kfs.sys.KFSPropertyConstants; /** * This class is used to generate the URL for the user-defined attributes for the Current Funds screen. It is entended the * KualiInquirableImpl class, so it covers both the default implementation and customized implemetnation. */ public class CurrentFundsInquirableImpl extends AbstractLaborInquirableImpl { private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(CurrentFundsInquirableImpl.class); /** * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#buildUserDefinedAttributeKeyList() */ protected List buildUserDefinedAttributeKeyList() { List<String> keys = new ArrayList<String>(); keys.add(KFSPropertyConstants.UNIVERSITY_FISCAL_YEAR); keys.add(KFSPropertyConstants.ACCOUNT_NUMBER); keys.add(KFSPropertyConstants.CHART_OF_ACCOUNTS_CODE); keys.add(KFSPropertyConstants.FINANCIAL_BALANCE_TYPE_CODE); keys.add(KFSPropertyConstants.SUB_ACCOUNT_NUMBER); keys.add(KFSPropertyConstants.FINANCIAL_OBJECT_CODE); keys.add(KFSPropertyConstants.FINANCIAL_SUB_OBJECT_CODE); keys.add(KFSPropertyConstants.EMPLID); keys.add(KFSPropertyConstants.POSITION_NUMBER); keys.add(Constant.CONSOLIDATION_OPTION); keys.add(Constant.PENDING_ENTRY_OPTION); return keys; } /** * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getUserDefinedAttributeMap() */ protected Map getUserDefinedAttributeMap() { Map userDefinedAttributeMap = new HashMap(); userDefinedAttributeMap.put(LaborPropertyConstants.ANNUAL_ACTUAL_AMOUNT, KFSConstants.BALANCE_TYPE_ACTUAL); userDefinedAttributeMap.put(LaborPropertyConstants.OUTSTANDING_ENCUMBRANCE, KFSConstants.BALANCE_TYPE_INTERNAL_ENCUMBRANCE); return userDefinedAttributeMap; } /** * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getAttributeName(java.lang.String) */ protected String getAttributeName(String attributeName) { return attributeName; } /** * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getKeyValue(java.lang.String, java.lang.Object) */ protected Object getKeyValue(String keyName, Object keyValue) { if (isExclusiveField(keyName, keyValue)) { keyValue = Constant.EMPTY_STRING; } return keyValue; } /** * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getKeyName(java.lang.String) */ protected String getKeyName(String keyName) { return keyName; } /** * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getLookupableImplAttributeName() */ protected String getLookupableImplAttributeName() { return Constant.EMPTY_STRING; } /** * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getBaseUrl() */ protected String getBaseUrl() { return KFSConstants.GL_BALANCE_INQUIRY_ACTION; } /** * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getInquiryBusinessObjectClass(java.lang.String) */ protected Class getInquiryBusinessObjectClass(String attributeName) { return LedgerBalance.class; } /** * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#addMoreParameters(java.util.Properties, java.lang.String) */ protected void addMoreParameters(Properties parameter, String attributeName) { String balanceTypeCode = (String) getUserDefinedAttributeMap().get(attributeName); parameter.put(KFSPropertyConstants.FINANCIAL_BALANCE_TYPE_CODE, balanceTypeCode); } }