public interface I_CmsSearchStateCommon
| Modifier and Type | Method and Description |
|---|---|
java.util.Map<java.lang.String,java.lang.String> |
getAdditionalParameters()
Getter for the map from the additional request parameters to their values.
|
boolean |
getIsReloaded()
Getter for the flag indicating if the search is called the first time, or reloaded.
|
java.lang.String |
getLastQuery()
Returns the last query string (as entered by the user).
|
java.lang.String |
getQuery()
Returns the current query string (as entered by the user).
|
void |
setAdditionalParameters(java.util.Map<java.lang.String,java.lang.String> parameters)
Setter for the additional parameters and their values.
|
void |
setIsReloaded(boolean isReloaded)
Setter for the flag indicating if the search is called the first time, or reloaded.
|
void |
setLastQuery(java.lang.String lastquery)
Setter for the last query string (as entered by the user).
|
void |
setQuery(java.lang.String query)
Setter for the current query string (as entered by the user).
|
java.util.Map<java.lang.String,java.lang.String> getAdditionalParameters()
boolean getIsReloaded()
java.lang.String getLastQuery()
java.lang.String getQuery()
void setAdditionalParameters(java.util.Map<java.lang.String,java.lang.String> parameters)
parameters - Map from the additional parameters and their values.void setIsReloaded(boolean isReloaded)
isReloaded - Typically false only if the search form is loaded the first time, otherwise it should be true.void setLastQuery(java.lang.String lastquery)
lastquery - The last query string (as entered by the user).void setQuery(java.lang.String query)
query - The current query string (as entered by the user).