Interface DocumentSearchResultSetConfigurationContract
- All Known Implementing Classes:
DocumentSearchResultSetConfiguration,DocumentSearchResultSetConfiguration.Builder
public interface DocumentSearchResultSetConfigurationContract
Defines how the display of results on the document search should be customized and configured. This class can be
used to remove standard fields from the result set that are typically show on document search results. This class
is also used to add additional fields
- Author:
- Kuali Rice Team (rice.collab@kuali.org)
-
Method Summary
Modifier and TypeMethodDescriptionList<? extends org.kuali.rice.core.api.uif.RemotableAttributeFieldContract> Gets attribute field definitions for additional attributes that may be displayed in the result set.Returns a list of field names of custom fields representing document attributes which should be added to the result set.Returns a list of the standard (built-in) document search result fields which should not be displayed in the result set.booleanReturns true if the custom field names returned bygetCustomFieldNamesToAdd()should be used to define the order of searchable attributes as well as additional custom additional fields.
-
Method Details
-
isOverrideSearchableAttributes
boolean isOverrideSearchableAttributes()Returns true if the custom field names returned bygetCustomFieldNamesToAdd()should be used to define the order of searchable attributes as well as additional custom additional fields. Returns false if any searchable attribute values should be included in the result set according to their existing configuration.- Returns:
- true if custom field names defined by this object should override any default searchable attribute result field display behavior, flase if searchable attribute fields should still be displayed in the result set according to their own configuration
-
getCustomFieldNamesToAdd
Returns a list of field names of custom fields representing document attributes which should be added to the result set. This may contains fields that are defined ingetAdditionalAttributeFields()or also fields defined as part of aSearchableAttribute(seeisOverrideSearchableAttributes()).- Returns:
- a list of field names of custom document attributes which should be added to the result set, can be an empty or null list in which case no fields will be added
-
getStandardResultFieldsToRemove
List<StandardResultField> getStandardResultFieldsToRemove()Returns a list of the standard (built-in) document search result fields which should not be displayed in the result set. The document search implementation should do it's best to honor the request to remove standard fields from the result set, but it is free to ignore such requests if needed. An example of this would be a preference for the implementation of document search that requires certain result set fields to remain (such as the document id and route log which is usually recommended to display).- Returns:
- a list of standard result fields to remove from inclusion in the result set, may be an empty or null list if no standard result fields should be removed
-
getAdditionalAttributeFields
List<? extends org.kuali.rice.core.api.uif.RemotableAttributeFieldContract> getAdditionalAttributeFields()Gets attribute field definitions for additional attributes that may be displayed in the result set. This simply defines the attribute field definition for each of these fields, their inclusion here does not necessarily mean they will be visible in the result set. This is controlled primarily bygetCustomFieldNamesToAdd().- Returns:
- a list containing additional attribute fields to define for use when constructing the result set, this method can return a null or empty list if there are no additional attribute fields to define
-