View Javadoc
1   /*
2    * The Kuali Financial System, a comprehensive financial management system for higher education.
3    * 
4    * Copyright 2005-2014 The Kuali Foundation
5    * 
6    * This program is free software: you can redistribute it and/or modify
7    * it under the terms of the GNU Affero General Public License as
8    * published by the Free Software Foundation, either version 3 of the
9    * License, or (at your option) any later version.
10   * 
11   * This program is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU Affero General Public License for more details.
15   * 
16   * You should have received a copy of the GNU Affero General Public License
17   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18   */
19  package org.kuali.kfs.module.ld.businessobject.inquiry;
20  
21  import java.util.List;
22  import java.util.Map;
23  
24  /**
25   * This class is used to generate the URL for the user-defined attributes for the pending ledger entry screen. It is entended the
26   * KualiInquirableImpl class, so it covers both the default implementation and customized implemetnation.
27   */
28  public class LedgerPendingEntryInquirableImpl extends AbstractLaborInquirableImpl {
29  
30      /**
31       * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#buildUserDefinedAttributeKeyList()
32       */
33      protected List buildUserDefinedAttributeKeyList() {
34          return null;
35      }
36  
37      /**
38       * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getAttributeName(java.lang.String)
39       */
40      protected String getAttributeName(String attributeName) {
41          return null;
42      }
43  
44      /**
45       * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getBaseUrl()
46       */
47      protected String getBaseUrl() {
48          return null;
49      }
50  
51      /**
52       * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getInquiryBusinessObjectClass(java.lang.String)
53       */
54      protected Class getInquiryBusinessObjectClass(String attributeName) {
55          return null;
56      }
57  
58      /**
59       * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getKeyName(java.lang.String)
60       */
61      protected String getKeyName(String keyName) {
62          return null;
63      }
64  
65      /**
66       * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getKeyValue(java.lang.String, java.lang.Object)
67       */
68      protected Object getKeyValue(String keyName, Object keyValue) {
69          return null;
70      }
71  
72      /**
73       * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getLookupableImplAttributeName()
74       */
75      protected String getLookupableImplAttributeName() {
76          return null;
77      }
78  
79      /**
80       * @see org.kuali.kfs.module.ld.businessobject.inquiry.AbstractLaborInquirableImpl#getUserDefinedAttributeMap()
81       */
82      protected Map getUserDefinedAttributeMap() {
83          return null;
84      }
85  }