Interface DeprecatedSearchLifeCyclePlugin

    • Method Detail

      • preProcess

        @Deprecated
        default void preProcess​(SearchTransaction transaction)
        Deprecated.
        Runs just after the hook_pre_process.groovy hook and before any input processing occurs. Manipulation of the query and addition or modification of most question attributes can be made at this point.
        Parameters:
        transaction -
      • preDatafetch

        @Deprecated
        default void preDatafetch​(SearchTransaction transaction)
        Deprecated.
        Runs just after the hook_pre_datafetch.groovy hook and after all of the input processing is complete, but just before the query is submitted. This hook can be used to manipulate any additional data model elements that are populated by the input processing. This is most commonly used for modifying faceted navigation.
        Parameters:
        transaction -
      • postDatafetch

        @Deprecated
        default void postDatafetch​(SearchTransaction transaction)
        Deprecated.
        Runs just after the hook_post_datafetch.groovy hook which is just after the response object is populated based on the raw XML return, but before other response elements are built. This is most commonly used to modify underlying data before the faceted navigation is built.
        Parameters:
        transaction -
      • postProcess

        @Deprecated
        default void postProcess​(SearchTransaction transaction)
        Deprecated.
        Runs just after the hook_post_process.groovy hook. This is used to modify the final data model prior to rendering of the search results.
        Parameters:
        transaction -
      • preExtraSearchExecution

        @Deprecated
        default void preExtraSearchExecution​(SearchTransaction transaction)
        Deprecated.
        Runs just after the search life cycle section extraSearchesInputProcessor which adds configured extra searches from ui.modern.extra_searches to the main search transaction. This will run on all search transactions just before extra searches are executed. This hook can be used for adding or removing extra searches that would be executed under the given transaction. This hook does not need to be used for editing the SearchQuestion of the extra searches since that can be done with the other hooks.
        Parameters:
        transaction -