Java Doc for AbstractGLInquirableImpl.java in  » ERP-CRM-Financial » Kuali-Financial-System » org » kuali » module » gl » web » inquirable » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ERP CRM Financial » Kuali Financial System » org.kuali.module.gl.web.inquirable 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.kuali.kfs.inquiry.KfsInquirableImpl
   org.kuali.module.gl.web.inquirable.AbstractGLInquirableImpl

All known Subclasses:   org.kuali.module.gl.web.inquirable.BalanceInquirableImpl,  org.kuali.module.gl.web.inquirable.EntryInquirableImpl,  org.kuali.module.gl.web.inquirable.EncumbranceInquirableImpl,  org.kuali.module.gl.web.inquirable.CashBalanceInquirableImpl,  org.kuali.module.gl.web.inquirable.AccountBalanceByConsolidationInquirableImpl,  org.kuali.module.gl.web.inquirable.AccountBalanceInquirableImpl,  org.kuali.module.gl.web.inquirable.AccountBalanceByObjectInquirableImpl,  org.kuali.module.gl.web.inquirable.AccountBalanceByLevelInquirableImpl,
AbstractGLInquirableImpl
abstract public class AbstractGLInquirableImpl extends KfsInquirableImpl (Code)
This class is the template class for the customized inqurable implementations used to generate balance inquiry screens.




Method Summary
abstract protected  voidaddMoreParameters(Properties parameter, String attributeName)
    
abstract protected  ListbuildUserDefinedAttributeKeyList()
    
abstract protected  StringgetAttributeName(String attributeName)
    
abstract protected  StringgetBaseUrl()
    
public  MapgetFieldValues(Map fieldValues)
    
abstract protected  ClassgetInquiryBusinessObjectClass(String attributeName)
     This method gets the class name of the inquiry business object for a given attribute.
public  StringgetInquiryUrl(BusinessObject businessObject, String attributeName)
     Helper method to build an inquiry url for a result field.
abstract protected  StringgetKeyName(String keyName)
    
abstract protected  ObjectgetKeyValue(String keyName, Object keyValue)
    
abstract protected  StringgetLookupableImplAttributeName()
    
public  ClassgetNestedInquiryBusinessObjectClass(BusinessObject businessObject, String attributeName)
    
abstract protected  MapgetUserDefinedAttributeMap()
    
protected  booleanisExclusiveField(Object keyName, Object keyValue)
    
protected  StringrecoverFieldValueFromConsolidation(Map fieldValues, Object keyName, Object keyValue)
    



Method Detail
addMoreParameters
abstract protected void addMoreParameters(Properties parameter, String attributeName)(Code)
This method adds more parameters into the curren parameter map
Parameters:
  parameter - the current parameter map



buildUserDefinedAttributeKeyList
abstract protected List buildUserDefinedAttributeKeyList()(Code)
This method builds the inquiry url for user-defined attribute a List of attribute keys for the inquiry url



getAttributeName
abstract protected String getAttributeName(String attributeName)(Code)
This method finds the matching attribute name of given one
Parameters:
  attributeName - the given attribute name the attribute name from the given one



getBaseUrl
abstract protected String getBaseUrl()(Code)
This method defines the base inquiry url the base inquiry url



getFieldValues
public Map getFieldValues(Map fieldValues)(Code)
This takes a map of field values and then returns it without processing it, making this a sort of identity method for Maps
Parameters:
  fieldValues - field values to return to the user the Map you sent in as a parameter



getInquiryBusinessObjectClass
abstract protected Class getInquiryBusinessObjectClass(String attributeName)(Code)
This method gets the class name of the inquiry business object for a given attribute. the class name of the inquiry business object for a given attribute



getInquiryUrl
public String getInquiryUrl(BusinessObject businessObject, String attributeName)(Code)
Helper method to build an inquiry url for a result field.
Parameters:
  businessObject - the business object instance to build the urls for
Parameters:
  attributeName - the attribute name which links to an inquirable String url to inquiry



getKeyName
abstract protected String getKeyName(String keyName)(Code)
This method finds the matching the key name of the given one
Parameters:
  keyName - the given key name the key value from the given key name



getKeyValue
abstract protected Object getKeyValue(String keyName, Object keyValue)(Code)
This method finds the matching the key value of the given one
Parameters:
  keyName - the given key name
Parameters:
  keyValue - the given key value the key value from the given key value



getLookupableImplAttributeName
abstract protected String getLookupableImplAttributeName()(Code)
This method defines the lookupable implementation attribute name the lookupable implementation attribute name



getNestedInquiryBusinessObjectClass
public Class getNestedInquiryBusinessObjectClass(BusinessObject businessObject, String attributeName)(Code)
Given the nested name of an attribute in an object, returns the class that attribute will return
Parameters:
  businessObject - the business object to find the propery class for
Parameters:
  attributeName - the nested name of the attribute to find the class for the class of the nested attribute



getUserDefinedAttributeMap
abstract protected Map getUserDefinedAttributeMap()(Code)
This method defines the user-defined attribute map the user-defined attribute map



isExclusiveField
protected boolean isExclusiveField(Object keyName, Object keyValue)(Code)
This method determines whether the input name-value pair is exclusive from the processing
Parameters:
  keyName - the name of the name-value pair
Parameters:
  keyValue - the value of the name-value pair true if the input key is in the exclusive list; otherwise, false



recoverFieldValueFromConsolidation
protected String recoverFieldValueFromConsolidation(Map fieldValues, Object keyName, Object keyValue)(Code)
This method recovers the values of the given keys
Parameters:
  fieldValues - unconsolidated values
Parameters:
  keyName - a key name that may be in the fieldValues map
Parameters:
  keyValue - a key value that may be in the fieldValues map the original value for a previously consolidated value



Methods inherited from org.kuali.kfs.inquiry.KfsInquirableImpl
public String getInquiryUrl(BusinessObject businessObject, String attributeName, boolean forceInquiry)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.