|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.kuali.rice.kew.framework.document.search.DocumentSearchCustomizerBase
public abstract class DocumentSearchCustomizerBase
An abstract implementation of a DocumentSearchCustomizer
which classes can extend from and override the
individual methods that they require in order to perform desired customization. All of the base method
implementations in this class perform the default operation of doing no customization.
Constructor Summary | |
---|---|
DocumentSearchCustomizerBase()
|
Method Summary | |
---|---|
DocumentSearchCriteria |
customizeClearCriteria(DocumentSearchCriteria documentSearchCriteria)
Always returns a null reference which instructs the document search framework that custom criteria clearing was not performed. |
DocumentSearchCriteria |
customizeCriteria(DocumentSearchCriteria documentSearchCriteria)
Always returns a null reference which instructs the document search framework that the criteria was not customized. |
DocumentSearchResultValues |
customizeResults(DocumentSearchCriteria documentSearchCriteria,
List<DocumentSearchResult> defaultResults)
Always returns a null reference which instructs the document search framework that the customization of results was not performed. |
DocumentSearchResultSetConfiguration |
customizeResultSetConfiguration(DocumentSearchCriteria documentSearchCriteria)
Always returns a null reference which instructs the document search framework that the customization of result set fields was not performed. |
boolean |
isCustomizeClearCriteriaEnabled(String documentTypeName)
Always returns false indicating that criteria clearing customization is disabled and should not be performed. |
boolean |
isCustomizeCriteriaEnabled(String documentTypeName)
Always returns false indicating that criteria customization is disabled and should not be performed. |
boolean |
isCustomizeResultsEnabled(String documentTypeName)
Always returns false indicating that results customization is disabled and should not be performed. |
boolean |
isCustomizeResultSetFieldsEnabled(String documentTypeName)
Always returns false indicating that result set field customization is disabled and should not be performed. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DocumentSearchCustomizerBase()
Method Detail |
---|
public DocumentSearchCriteria customizeCriteria(DocumentSearchCriteria documentSearchCriteria)
customizeCriteria
in interface DocumentSearchCustomizer
documentSearchCriteria
- the criteria on which to perform customization
public DocumentSearchCriteria customizeClearCriteria(DocumentSearchCriteria documentSearchCriteria)
customizeClearCriteria
in interface DocumentSearchCustomizer
documentSearchCriteria
- the criteria on which to perform a customized clear
public DocumentSearchResultValues customizeResults(DocumentSearchCriteria documentSearchCriteria, List<DocumentSearchResult> defaultResults)
customizeResults
in interface DocumentSearchCustomizer
documentSearchCriteria
- the search criteriadefaultResults
- the results obtained when executing the search
public DocumentSearchResultSetConfiguration customizeResultSetConfiguration(DocumentSearchCriteria documentSearchCriteria)
customizeResultSetConfiguration
in interface DocumentSearchCustomizer
documentSearchCriteria
- the search criteria
public boolean isCustomizeCriteriaEnabled(String documentTypeName)
isCustomizeCriteriaEnabled
in interface DocumentSearchCustomizer
documentTypeName
- the name of the document type under consideration
public boolean isCustomizeClearCriteriaEnabled(String documentTypeName)
isCustomizeClearCriteriaEnabled
in interface DocumentSearchCustomizer
documentTypeName
- the name of the document type under consideration
public boolean isCustomizeResultsEnabled(String documentTypeName)
isCustomizeResultsEnabled
in interface DocumentSearchCustomizer
documentTypeName
- the name of the document type under consideration
public boolean isCustomizeResultSetFieldsEnabled(String documentTypeName)
isCustomizeResultSetFieldsEnabled
in interface DocumentSearchCustomizer
documentTypeName
- the name of the document type under consideration
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |