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.ld.businessobject.inquiry;
017    
018    import java.util.List;
019    import java.util.Map;
020    
021    /**
022     * This class is used to generate the URL for the user-defined attributes for the pending ledger entry screen. It is entended the
023     * KualiInquirableImpl class, so it covers both the default implementation and customized implemetnation.
024     */
025    public class LedgerPendingEntryInquirableImpl extends AbstractLaborInquirableImpl {
026    
027        /**
028         * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#buildUserDefinedAttributeKeyList()
029         */
030        protected List buildUserDefinedAttributeKeyList() {
031            return null;
032        }
033    
034        /**
035         * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getAttributeName(java.lang.String)
036         */
037        protected String getAttributeName(String attributeName) {
038            return null;
039        }
040    
041        /**
042         * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getBaseUrl()
043         */
044        protected String getBaseUrl() {
045            return null;
046        }
047    
048        /**
049         * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getInquiryBusinessObjectClass(java.lang.String)
050         */
051        protected Class getInquiryBusinessObjectClass(String attributeName) {
052            return null;
053        }
054    
055        /**
056         * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getKeyName(java.lang.String)
057         */
058        protected String getKeyName(String keyName) {
059            return null;
060        }
061    
062        /**
063         * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getKeyValue(java.lang.String, java.lang.Object)
064         */
065        protected Object getKeyValue(String keyName, Object keyValue) {
066            return null;
067        }
068    
069        /**
070         * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getLookupableImplAttributeName()
071         */
072        protected String getLookupableImplAttributeName() {
073            return null;
074        }
075    
076        /**
077         * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getUserDefinedAttributeMap()
078         */
079        protected Map getUserDefinedAttributeMap() {
080            return null;
081        }
082    }