Java Doc for LookupableHelperService.java in  » ERP-CRM-Financial » Kuali-Financial-System » org » kuali » core » lookup » 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.core.lookup 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.kuali.core.lookup.LookupableHelperService

All known Subclasses:   org.kuali.core.lookup.AbstractLookupableHelperServiceImpl,
LookupableHelperService
public interface LookupableHelperService extends Serializable(Code)




Method Summary
public  booleanallowsMaintenanceNewOrCopyAction()
     Determines if underlying lookup bo has associated maintenance document that allows new or copy maintenance actions.
public  booleancheckForAdditionalFields(Map fieldValues)
     Determines if there should be more search fields rendered based on already entered search criteria.
public  StringgetActionUrls(BusinessObject businessObject)
    
public  StringgetBackLocation()
    
public  ClassgetBusinessObjectClass()
    
public  BusinessObjectDictionaryServicegetBusinessObjectDictionaryService()
     This method returns the BusinessObjectDictionaryService used to initialize this helper service and is used by Lookupable implementations to retrieve the proper service.
public  ListgetColumns()
    
public  DataDictionaryServicegetDataDictionaryService()
     This method returns the DataDictionaryService used to initialize this helper service and is used by Lookupable implementations to retrieve the proper service.
public  ListgetDefaultSortColumns()
     This method returns a list of the default columns used to sort the result set.
public  StringgetDocFormKey()
    
public  StringgetInquiryUrl(BusinessObject businessObject, String propertyName)
    
public  StringgetMaintenanceUrl(BusinessObject businessObject, String methodToCall)
    
public  StringgetPrimaryKeyFieldLabels()
    
public  List<String>getReadOnlyFieldsList()
     Gets the readOnlyFieldsList attribute.
public  ListgetReturnKeys()
     This method is public because some unit tests depend on it.
public  StringgetReturnLocation()
    
public  StringgetReturnUrl(BusinessObject businessObject, Map fieldConversions, String lookupImpl)
     Builds the return value url.
public  List<Row>getRows()
    
public  ListgetSearchResults(Map<String, String> fieldValues)
     Performs a search and returns result list.
public  ListgetSearchResultsUnbounded(Map<String, String> fieldValues)
    
public  booleanisSearchUsingOnlyPrimaryKeyValues()
    
public  CollectionperformLookup(LookupForm lookupForm, Collection resultTable, boolean bounded)
    
public  voidsetBackLocation(String backLocation)
    
public  voidsetBusinessObjectClass(Class businessObjectClass)
    
public  voidsetDocFormKey(String docFormKey)
    
public  voidsetFieldConversions(Map fieldConversions)
    
public  voidsetReadOnlyFieldsList(List<String> readOnlyFieldsList)
    
public  voidvalidateSearchParameters(Map fieldValues)
     Validates the values filled in as search criteria, also checks for required field values.



Method Detail
allowsMaintenanceNewOrCopyAction
public boolean allowsMaintenanceNewOrCopyAction()(Code)
Determines if underlying lookup bo has associated maintenance document that allows new or copy maintenance actions. true if bo has maint doc that allows new or copy actions



checkForAdditionalFields
public boolean checkForAdditionalFields(Map fieldValues)(Code)
Determines if there should be more search fields rendered based on already entered search criteria.
Parameters:
  fieldValues - - Map of property/value pairs boolean



getActionUrls
public String getActionUrls(BusinessObject businessObject)(Code)
Builds string of action urls that can take place for a result row
Parameters:
  businessObject - - Instance of a business object containing the return values String rendered in actions column of result set



getBackLocation
public String getBackLocation()(Code)



getBusinessObjectClass
public Class getBusinessObjectClass()(Code)
Returns the businessObjectClass this lookupable is representing



getBusinessObjectDictionaryService
public BusinessObjectDictionaryService getBusinessObjectDictionaryService()(Code)
This method returns the BusinessObjectDictionaryService used to initialize this helper service and is used by Lookupable implementations to retrieve the proper service.



getColumns
public List getColumns()(Code)
List of Column objects used to render the result table



getDataDictionaryService
public DataDictionaryService getDataDictionaryService()(Code)
This method returns the DataDictionaryService used to initialize this helper service and is used by Lookupable implementations to retrieve the proper service.



getDefaultSortColumns
public List getDefaultSortColumns()(Code)
This method returns a list of the default columns used to sort the result set. For multiple value lookups, this method does not change when different columns are sorted.



getDocFormKey
public String getDocFormKey()(Code)



getInquiryUrl
public String getInquiryUrl(BusinessObject businessObject, String propertyName)(Code)
Builds string an inquiry url for drill down on a result field
Parameters:
  businessObject - - Instance of a business object containing the return values
Parameters:
  propertyName - - Name of the property in the business object String url called on selection of the result field



getMaintenanceUrl
public String getMaintenanceUrl(BusinessObject businessObject, String methodToCall)(Code)



getPrimaryKeyFieldLabels
public String getPrimaryKeyFieldLabels()(Code)
Returns a comma delimited list of primary key field labels, to be used on the UI to tell the user which fields were used to search
See Also:   LookupableHelperService.isSearchUsingOnlyPrimaryKeyValues



getReadOnlyFieldsList
public List<String> getReadOnlyFieldsList()(Code)
Gets the readOnlyFieldsList attribute. Returns the readOnlyFieldsList.



getReturnKeys
public List getReturnKeys()(Code)
This method is public because some unit tests depend on it. a List of the names of fields which are marked in data dictionary as return fields.



getReturnLocation
public String getReturnLocation()(Code)
String url for the location to return to after the lookup



getReturnUrl
public String getReturnUrl(BusinessObject businessObject, Map fieldConversions, String lookupImpl)(Code)
Builds the return value url.
Parameters:
  businessObject - - Instance of a business object containing the return values
Parameters:
  fieldConversions - - Map of conversions mapping bo names to caller field names.
Parameters:
  lookupImpl - - Current lookup impl name String url called when selecting a row from the result set



getRows
public List<Row> getRows()(Code)
Returns a list of Row objects to be used to generate the search query screen Generally, setBusinessObjectClass needs to be called with a non-null value for proper operation



getSearchResults
public List getSearchResults(Map<String, String> fieldValues)(Code)
Performs a search and returns result list.
Parameters:
  fieldValues - - Map of property/value pairs List of business objects found by the search
throws:
  Exception -



getSearchResultsUnbounded
public List getSearchResultsUnbounded(Map<String, String> fieldValues)(Code)
Similar to getSearchResults, but the number of returned rows is not bounded
Parameters:
  fieldValues -



isSearchUsingOnlyPrimaryKeyValues
public boolean isSearchUsingOnlyPrimaryKeyValues()(Code)
This method returns whether the previously executed getSearchResults used the primary key values to search, ignoring all non key values
See Also:   LookupableHelperService.getPrimaryKeyFieldLabels



performLookup
public Collection performLookup(LookupForm lookupForm, Collection resultTable, boolean bounded)(Code)
This method performs the lookup and returns a collection of BO items
Parameters:
  lookupForm -
Parameters:
  resultTable -
Parameters:
  bounded - the list of result BOs, possibly bounded



setBackLocation
public void setBackLocation(String backLocation)(Code)



setBusinessObjectClass
public void setBusinessObjectClass(Class businessObjectClass)(Code)
Initializes the lookup with a businss object class
Parameters:
  businessObjectClass -



setDocFormKey
public void setDocFormKey(String docFormKey)(Code)



setFieldConversions
public void setFieldConversions(Map fieldConversions)(Code)
Sets the requested fields conversions in the lookupable
Parameters:
  fieldConversions -



setReadOnlyFieldsList
public void setReadOnlyFieldsList(List<String> readOnlyFieldsList)(Code)
Sets the requested read only fields list in the lookupable
Parameters:
  readOnlyFieldsList -



validateSearchParameters
public void validateSearchParameters(Map fieldValues)(Code)
Validates the values filled in as search criteria, also checks for required field values.
Parameters:
  fieldValues - - Map of property/value pairs



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