01: /*
02: * Copyright 2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package org.kuali.module.labor.web.inquirable;
17:
18: import java.util.List;
19: import java.util.Map;
20:
21: /**
22: * This class is used to generate the URL for the user-defined attributes for the pending ledger entry screen. It is entended the
23: * KualiInquirableImpl class, so it covers both the default implementation and customized implemetnation.
24: */
25: public class LedgerPendingEntryInquirableImpl extends
26: AbstractLaborInquirableImpl {
27:
28: /**
29: * @see org.kuali.module.labor.web.inquirable.AbstractLaborInquirableImpl#buildUserDefinedAttributeKeyList()
30: */
31: protected List buildUserDefinedAttributeKeyList() {
32: return null;
33: }
34:
35: /**
36: * @see org.kuali.module.labor.web.inquirable.AbstractLaborInquirableImpl#getAttributeName(java.lang.String)
37: */
38: protected String getAttributeName(String attributeName) {
39: return null;
40: }
41:
42: /**
43: * @see org.kuali.module.labor.web.inquirable.AbstractLaborInquirableImpl#getBaseUrl()
44: */
45: protected String getBaseUrl() {
46: return null;
47: }
48:
49: /**
50: * @see org.kuali.module.labor.web.inquirable.AbstractLaborInquirableImpl#getInquiryBusinessObjectClass(java.lang.String)
51: */
52: protected Class getInquiryBusinessObjectClass(String attributeName) {
53: return null;
54: }
55:
56: /**
57: * @see org.kuali.module.labor.web.inquirable.AbstractLaborInquirableImpl#getKeyName(java.lang.String)
58: */
59: protected String getKeyName(String keyName) {
60: return null;
61: }
62:
63: /**
64: * @see org.kuali.module.labor.web.inquirable.AbstractLaborInquirableImpl#getKeyValue(java.lang.String, java.lang.Object)
65: */
66: protected Object getKeyValue(String keyName, Object keyValue) {
67: return null;
68: }
69:
70: /**
71: * @see org.kuali.module.labor.web.inquirable.AbstractLaborInquirableImpl#getLookupableImplAttributeName()
72: */
73: protected String getLookupableImplAttributeName() {
74: return null;
75: }
76:
77: /**
78: * @see org.kuali.module.labor.web.inquirable.AbstractLaborInquirableImpl#getUserDefinedAttributeMap()
79: */
80: protected Map getUserDefinedAttributeMap() {
81: return null;
82: }
83: }
|