Class SetQuery
- java.lang.Object
-
- com.funnelback.publicui.search.model.curator.action.SetQuery
-
- All Implemented Interfaces:
Action,HasNoBeans
public final class SetQuery extends java.lang.Object implements Action, HasNoBeans
Action to set the query to the given value, replacing any previously specified by the user.
Optionally, may also clear any metadata or special query parameters (e.g. query_and) as well.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.funnelback.publicui.search.model.curator.config.Action
Action.Phase
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.BooleanclearAllQueryParametersWhether to remove all other query parameters (such as meta_x and query_or), in addition to the simple query one.private java.lang.StringqueryThe new query to be used.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigure(Configurer configurer)Configure this action (expected to autowire in any dependencies)booleanequals(java.lang.Object o)java.lang.BooleangetClearAllQueryParameters()Whether to remove all other query parameters (such as meta_x and query_or), in addition to the simple query one.java.lang.StringgetQuery()The new query to be used.inthashCode()voidperformAction(SearchTransaction searchTransaction, Action.Phase phase)Replace occurrences of target with replacement within the question's query and metaParameters.booleanrunsInPhase(Action.Phase phase)Query term addition occurs in the INPUT phase since it must modify the query before it is run by padre.voidsetClearAllQueryParameters(java.lang.Boolean clearAllQueryParameters)Whether to remove all other query parameters (such as meta_x and query_or), in addition to the simple query one.voidsetQuery(java.lang.String query)The new query to be used.java.lang.StringtoString()
-
-
-
Method Detail
-
performAction
public void performAction(SearchTransaction searchTransaction, Action.Phase phase)
Replace occurrences of target with replacement within the question's query and metaParameters.- Specified by:
performActionin interfaceAction- Parameters:
searchTransaction- Current search transactionphase- The phase being processed (Some actions may wish to behave differently depending on the current phase of processing).
-
runsInPhase
public boolean runsInPhase(Action.Phase phase)
Query term addition occurs in the INPUT phase since it must modify the query before it is run by padre.- Specified by:
runsInPhasein interfaceAction- Parameters:
phase- The phase being processed (Some actions may wish to behave differently depending on the current phase of processing).- Returns:
- true if this action should be run in the given phase, otherwise return false.
-
configure
public void configure(Configurer configurer)
Configure this action (expected to autowire in any dependencies)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
getQuery
public java.lang.String getQuery()
The new query to be used.
-
setQuery
public void setQuery(java.lang.String query)
The new query to be used.
-
getClearAllQueryParameters
public java.lang.Boolean getClearAllQueryParameters()
Whether to remove all other query parameters (such as meta_x and query_or), in addition to the simple query one.
-
setClearAllQueryParameters
public void setClearAllQueryParameters(java.lang.Boolean clearAllQueryParameters)
Whether to remove all other query parameters (such as meta_x and query_or), in addition to the simple query one.
-
-