Uses of Interface
com.funnelback.publicui.search.model.curator.HasNoBeans
-
Packages that use HasNoBeans Package Description com.funnelback.publicui.search.model.curator.action Provides classes representing Curator system actions.com.funnelback.publicui.search.model.curator.config Provides classes representing the Curator system's configuration, including actions (what should happen) and triggers (when should it happen).com.funnelback.publicui.search.model.curator.trigger Provides classes representing Curator system triggers (controls when Action objects are executed). -
-
Uses of HasNoBeans in com.funnelback.publicui.search.model.curator.action
Classes in com.funnelback.publicui.search.model.curator.action that implement HasNoBeans Modifier and Type Class Description class
AddQueryTerm
Action to add a specified term to the users query before running it.class
DisplayMessage
Action to display the specified message within the search results.class
DisplayProperties
Action to display the specified properties within the search results.class
DisplayUrlAdvert
Action to display the specified URL advert within the search results.class
PromoteUrls
Action to promote a set of URLs within the search results, causing them to be displayed at the top of the result set in the order given.class
RemoveUrls
Action to remove a set of URLs within the search results, causing them to be excluded from the result set even if they match the given query.class
ReplaceQueryTerm
Action to replace a specified term within the users query before running it.class
SetQuery
Action to set the query to the given value, replacing any previously specified by the user.class
TransformQuery
Action to transform the user's query based on a regular expression replacement. -
Uses of HasNoBeans in com.funnelback.publicui.search.model.curator.config
Classes in com.funnelback.publicui.search.model.curator.config that implement HasNoBeans Modifier and Type Class Description class
TriggerActions
-
Uses of HasNoBeans in com.funnelback.publicui.search.model.curator.trigger
Classes in com.funnelback.publicui.search.model.curator.trigger that implement HasNoBeans Modifier and Type Class Description class
AllQueryWordsTrigger
A trigger which activates only when the current query contains all the words given as triggers.class
AndTrigger
A trigger which activates only when all of the given 'sub' triggers activate.class
CountryNameTrigger
A trigger which activates only when the current request originates from a country whose name exists in the targetCountries list.class
DateRangeTrigger
A trigger which activates only when the current date and time falls after the given start date but before the given end date.class
ExactQueryTrigger
A trigger which activates only when the current query exactly matches the given trigger query.class
FacetSelectionTrigger
A trigger which activates when a particular facet category is selected.class
NotAnyTrigger
A trigger which activates only when none of the given 'sub' triggers activate.class
OrTrigger
A trigger which activates only when at least one of the 'sub' triggers activates.class
QueryRegularExpressionTrigger
A trigger which activates when the current query matches the given regular expression.class
QuerySubstringTrigger
A trigger which activates when the given substring is contained within the current query.class
RequestParameterTrigger
A trigger which activates when a request parameter has a particular value (e.g.
-