Uses of Interface
com.funnelback.publicui.search.model.curator.config.Trigger
-
Packages that use Trigger Package Description 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 Trigger in com.funnelback.publicui.search.model.curator.config
Fields in com.funnelback.publicui.search.model.curator.config declared as Trigger Modifier and Type Field Description private Trigger
TriggerActions. trigger
Fields in com.funnelback.publicui.search.model.curator.config with type parameters of type Trigger Modifier and Type Field Description private java.util.Map<Trigger,ActionSet>
CuratorYamlConfig. triggerActions
The map of triggers and associated actions for this curator configuration.Methods in com.funnelback.publicui.search.model.curator.config that return Trigger Modifier and Type Method Description Trigger
TriggerActions. getTrigger()
Methods in com.funnelback.publicui.search.model.curator.config that return types with arguments of type Trigger Modifier and Type Method Description java.util.Map<Trigger,ActionSet>
CuratorYamlConfig. getTriggerActions()
The map of triggers and associated actions for this curator configuration.Methods in com.funnelback.publicui.search.model.curator.config with parameters of type Trigger Modifier and Type Method Description void
TriggerActions. setTrigger(Trigger trigger)
Method parameters in com.funnelback.publicui.search.model.curator.config with type arguments of type Trigger Modifier and Type Method Description void
CuratorYamlConfig. setTriggerActions(java.util.Map<Trigger,ActionSet> triggerActions)
The map of triggers and associated actions for this curator configuration.Constructor parameters in com.funnelback.publicui.search.model.curator.config with type arguments of type Trigger Constructor Description CuratorYamlConfig(java.util.Map<Trigger,ActionSet> triggerActions)
-
Uses of Trigger in com.funnelback.publicui.search.model.curator.trigger
Classes in com.funnelback.publicui.search.model.curator.trigger that implement Trigger 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
GroovyTrigger
A trigger which activates only when the current query contains all the words given as triggers.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.class
UserSegmentTrigger
A trigger which activates only when the current request originates user matching some particular Predictive Segmenter constraint.Fields in com.funnelback.publicui.search.model.curator.trigger with type parameters of type Trigger Modifier and Type Field Description private java.util.List<Trigger>
AndTrigger. triggers
The list of 'sub' triggers each of which must activate for this trigger to activate.private java.util.List<Trigger>
NotAnyTrigger. triggers
The list of 'sub' triggers each of which must not activate for this trigger to activate.private java.util.List<Trigger>
OrTrigger. triggers
The list of 'sub' triggers one of which must activate for this trigger to activate.Methods in com.funnelback.publicui.search.model.curator.trigger that return types with arguments of type Trigger Modifier and Type Method Description java.util.List<Trigger>
AndTrigger. getTriggers()
java.util.List<Trigger>
NotAnyTrigger. getTriggers()
java.util.List<Trigger>
OrTrigger. getTriggers()
Method parameters in com.funnelback.publicui.search.model.curator.trigger with type arguments of type Trigger Modifier and Type Method Description void
AndTrigger. setTriggers(java.util.List<Trigger> triggers)
The list of 'sub' triggers each of which must activate for this trigger to activate.void
NotAnyTrigger. setTriggers(java.util.List<Trigger> triggers)
The list of 'sub' triggers each of which must not activate for this trigger to activate.void
OrTrigger. setTriggers(java.util.List<Trigger> triggers)
The list of 'sub' triggers one of which must activate for this trigger to activate.Constructor parameters in com.funnelback.publicui.search.model.curator.trigger with type arguments of type Trigger Constructor Description AndTrigger(java.util.List<Trigger> triggers)
NotAnyTrigger(java.util.List<Trigger> triggers)
OrTrigger(java.util.List<Trigger> triggers)
-