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 TriggerTriggerActions. triggerFields 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. triggerActionsThe 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 TriggerTriggerActions. 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 voidTriggerActions. setTrigger(Trigger trigger)Method parameters in com.funnelback.publicui.search.model.curator.config with type arguments of type Trigger Modifier and Type Method Description voidCuratorYamlConfig. 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 classAllQueryWordsTriggerA trigger which activates only when the current query contains all the words given as triggers.classAndTriggerA trigger which activates only when all of the given 'sub' triggers activate.classCountryNameTriggerA trigger which activates only when the current request originates from a country whose name exists in the targetCountries list.classDateRangeTriggerA trigger which activates only when the current date and time falls after the given start date but before the given end date.classExactQueryTriggerA trigger which activates only when the current query exactly matches the given trigger query.classFacetSelectionTriggerA trigger which activates when a particular facet category is selected.classGroovyTriggerA trigger which activates only when the current query contains all the words given as triggers.classNotAnyTriggerA trigger which activates only when none of the given 'sub' triggers activate.classOrTriggerA trigger which activates only when at least one of the 'sub' triggers activates.classQueryRegularExpressionTriggerA trigger which activates when the current query matches the given regular expression.classQuerySubstringTriggerA trigger which activates when the given substring is contained within the current query.classRequestParameterTriggerA trigger which activates when a request parameter has a particular value (e.g.classUserSegmentTriggerA 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. triggersThe list of 'sub' triggers each of which must activate for this trigger to activate.private java.util.List<Trigger>NotAnyTrigger. triggersThe list of 'sub' triggers each of which must not activate for this trigger to activate.private java.util.List<Trigger>OrTrigger. triggersThe 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 voidAndTrigger. setTriggers(java.util.List<Trigger> triggers)The list of 'sub' triggers each of which must activate for this trigger to activate.voidNotAnyTrigger. setTriggers(java.util.List<Trigger> triggers)The list of 'sub' triggers each of which must not activate for this trigger to activate.voidOrTrigger. 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)
-