Uses of Class
org.apache.unomi.api.Event
-
-
Uses of Event in org.apache.unomi.api
Methods in org.apache.unomi.api that return types with arguments of type Event Modifier and Type Method Description List<Event>
ContextRequest. getEvents()
Retrieves the events that the client has generated as part of its processes and wishes the context server to process.List<Event>
EventsCollectorRequest. getEvents()
Retrieves the events to be processed.Method parameters in org.apache.unomi.api with type arguments of type Event Modifier and Type Method Description void
ContextRequest. setEvents(List<Event> events)
Specifies the events to be processed by the context server.void
EventsCollectorRequest. setEvents(List<Event> events)
-
Uses of Event in org.apache.unomi.api.actions
Methods in org.apache.unomi.api.actions with parameters of type Event Modifier and Type Method Description Integer
ActionDispatcher. execute(Action action, Event event, String actionName)
This method is responsible of executing the action logic, so it will probably dispatch to an underlying engine such as a scripting engine or any other type.int
ActionExecutor. execute(Action action, Event event)
-
Uses of Event in org.apache.unomi.api.services
Methods in org.apache.unomi.api.services that return Event Modifier and Type Method Description Event
EventService. getEvent(String id)
Retrieves theEvent
by its identifier.Methods in org.apache.unomi.api.services that return types with arguments of type Event Modifier and Type Method Description PartialList<Event>
EventService. search(Query query)
PartialList<Event>
EventService. searchEvents(String sessionId, String[] eventTypes, String query, int offset, int size, String sortBy)
PartialList<Event>
EventService. searchEvents(Condition condition, int offset, int size)
Methods in org.apache.unomi.api.services with parameters of type Event Modifier and Type Method Description boolean
EventListenerService. canHandle(Event event)
Whether or not this listener can handle the specified event.Set<Rule>
RulesService. getMatchingRules(Event event)
Retrieves all the matching rules for a specific eventboolean
EventService. hasEventAlreadyBeenRaised(Event event)
Checks whether the specified event has already been raised with the same itemId.boolean
EventService. hasEventAlreadyBeenRaised(Event event, boolean session)
Checks whether the specified event has already been raised either for the associated session or profile depending on the specifiedsession
parameter.boolean
EventService. isEventAllowed(Event event, String thirdPartyId)
Check if the sender is allowed to sent the speecified event.void
RuleListenerService. onAlreadyRaised(RuleListenerService.AlreadyRaisedFor alreadyRaisedFor, Rule rule, Event event)
Called when a rule has already been raised either for a session or a profile.void
RuleListenerService. onEvaluate(Rule rule, Event event)
Called before a rule's conditions are evaluated.int
EventListenerService. onEvent(Event event)
Handles the specified event.void
RuleListenerService. onExecuteActions(Rule rule, Event event)
Called just before a matching rule's actions are about to be executed.int
EventService. send(Event event)
Propagates the specified event in the context server, notifyingEventListenerService
instances if needed. -
Uses of Event in org.apache.unomi.api.utils
Methods in org.apache.unomi.api.utils with parameters of type Event Modifier and Type Method Description Object
ParserHelper.ValueExtractor. extract(String valueAsString, Event event)
static Object
ParserHelper. extractValue(String s, Event event, Map<String,ParserHelper.ValueExtractor> valueExtractors)
static Map<String,Object>
ParserHelper. parseMap(Event event, Map<String,Object> map, Map<String,ParserHelper.ValueExtractor> valueExtractors)
-
Uses of Event in org.apache.unomi.graphql.actions
Methods in org.apache.unomi.graphql.actions with parameters of type Event Modifier and Type Method Description int
CDPConsentUpdateAction. execute(Action action, Event event)
int
CDPSessionAction. execute(Action action, Event event)
int
CDPUpdateListsAction. execute(Action action, Event event)
-
Uses of Event in org.apache.unomi.graphql.fetchers
Method parameters in org.apache.unomi.graphql.fetchers with type arguments of type Event Modifier and Type Method Description protected CDPEventConnection
EventConnectionDataFetcher. createEventConnection(PartialList<Event> events)
-
Uses of Event in org.apache.unomi.graphql.fetchers.event
Methods in org.apache.unomi.graphql.fetchers.event with parameters of type Event Modifier and Type Method Description boolean
UnomiEventPublisher. canHandle(Event event)
int
UnomiEventPublisher. onEvent(Event event)
-
Uses of Event in org.apache.unomi.graphql.providers.sample
Methods in org.apache.unomi.graphql.providers.sample that return Event Modifier and Type Method Description Event
MyEventInput. buildEvent(LinkedHashMap<String,Object> eventInputAsMap, graphql.schema.DataFetchingEnvironment environment)
Event
VENDOR_PageViewEventInput. buildEvent(LinkedHashMap<String,Object> eventInputAsMap, graphql.schema.DataFetchingEnvironment environment)
Event
MyEvent. getEvent()
Constructors in org.apache.unomi.graphql.providers.sample with parameters of type Event Constructor Description MyEvent(Event event)
-
Uses of Event in org.apache.unomi.graphql.schema
Methods in org.apache.unomi.graphql.schema with parameters of type Event Modifier and Type Method Description CDPEventInterface
CDPEventInterfaceRegister. getEvent(Event event)
-
Uses of Event in org.apache.unomi.graphql.types.input
Methods in org.apache.unomi.graphql.types.input that return Event Modifier and Type Method Description Event
CDPConsentUpdateEventInput. buildEvent(LinkedHashMap<String,Object> eventInputAsMap, graphql.schema.DataFetchingEnvironment environment)
Event
CDPEventProcessor. buildEvent(LinkedHashMap<String,Object> eventInputAsMap, graphql.schema.DataFetchingEnvironment environment)
Event
CDPListsUpdateEventInput. buildEvent(LinkedHashMap<String,Object> eventInputAsMap, graphql.schema.DataFetchingEnvironment environment)
Event
CDPProfileUpdateEventInput. buildEvent(LinkedHashMap<String,Object> eventInputAsMap, graphql.schema.DataFetchingEnvironment environment)
Event
CDPSessionEventInput. buildEvent(LinkedHashMap<String,Object> eventInputAsMap, graphql.schema.DataFetchingEnvironment environment)
Event
CDPUnomiEventInput. buildEvent(LinkedHashMap<String,Object> eventInputAsMap, graphql.schema.DataFetchingEnvironment environment)
-
Uses of Event in org.apache.unomi.graphql.types.output
Methods in org.apache.unomi.graphql.types.output that return Event Modifier and Type Method Description Event
CDPConsentUpdateEvent. getEvent()
Event
CDPEventEdge. getEvent()
Event
CDPEventInterface. getEvent()
Event
CDPListsUpdateEvent. getEvent()
Event
CDPProfileUpdateEvent. getEvent()
Event
CDPSessionEvent. getEvent()
Event
UnomiEvent. getEvent()
Constructors in org.apache.unomi.graphql.types.output with parameters of type Event Constructor Description CDPConsentUpdateEvent(Event event)
CDPEventEdge(Event event)
CDPListsUpdateEvent(Event event)
CDPObject(Event event)
CDPProfileUpdateEvent(Event event)
CDPSessionEvent(Event event)
UnomiEvent(Event event)
-
Uses of Event in org.apache.unomi.graphql.utils
Methods in org.apache.unomi.graphql.utils that return Event Modifier and Type Method Description Event
EventBuilder. build()
-
Uses of Event in org.apache.unomi.groovy.actions
Methods in org.apache.unomi.groovy.actions with parameters of type Event Modifier and Type Method Description Integer
GroovyActionDispatcher. execute(Action action, Event event, String actionName)
-
Uses of Event in org.apache.unomi.lists.actions
Methods in org.apache.unomi.lists.actions with parameters of type Event Modifier and Type Method Description int
AddToListsAction. execute(Action action, Event event)
-
Uses of Event in org.apache.unomi.plugins.baseplugin.actions
Methods in org.apache.unomi.plugins.baseplugin.actions with parameters of type Event Modifier and Type Method Description int
AllEventToProfilePropertiesAction. execute(Action action, Event event)
Deprecated.int
CopyPropertiesAction. execute(Action action, Event event)
int
EvaluateProfileAgeAction. execute(Action action, Event event)
int
EvaluateProfileSegmentsAction. execute(Action action, Event event)
int
EvaluateVisitPropertiesAction. execute(Action action, Event event)
int
EventToProfilePropertyAction. execute(Action action, Event event)
int
IncrementPropertyAction. execute(Action action, Event event)
int
MergeProfilesOnPropertyAction. execute(Action action, Event event)
int
ModifyConsentAction. execute(Action action, Event event)
int
SendEventAction. execute(Action action, Event event)
int
SetEventOccurenceCountAction. execute(Action action, Event event)
int
SetPropertyAction. execute(Action action, Event event)
int
UpdatePropertiesAction. execute(Action action, Event event)
-
Uses of Event in org.apache.unomi.plugins.baseplugin.conditions.accessors
Methods in org.apache.unomi.plugins.baseplugin.conditions.accessors with parameters of type Event Modifier and Type Method Description Object
EventAccessor. getProperty(Event object, String propertyName, String leftoverExpression)
-
Uses of Event in org.apache.unomi.plugins.mail.actions
Methods in org.apache.unomi.plugins.mail.actions with parameters of type Event Modifier and Type Method Description int
SendMailAction. execute(Action action, Event event)
-
Uses of Event in org.apache.unomi.plugins.request.actions
Methods in org.apache.unomi.plugins.request.actions with parameters of type Event Modifier and Type Method Description int
RequestHeaderToProfilePropertyAction. execute(Action action, Event event)
int
RequestParameterToProfilePropertyAction. execute(Action action, Event event)
int
SetRemoteHostInfoAction. execute(Action action, Event event)
-
Uses of Event in org.apache.unomi.rest.endpoints
Methods in org.apache.unomi.rest.endpoints that return Event Modifier and Type Method Description Event
EventServiceEndpoint. getEvents(String id)
Allows to retrieve event by id.Methods in org.apache.unomi.rest.endpoints that return types with arguments of type Event Modifier and Type Method Description PartialList<Event>
ProfileServiceEndPoint. getSessionEvents(String sessionId, String[] eventTypes, String query, int offset, int size, String sortBy)
PartialList<Event>
EventServiceEndpoint. searchEvents(Query query)
Allows to search events using a query. -
Uses of Event in org.apache.unomi.rest.service
Method parameters in org.apache.unomi.rest.service with type arguments of type Event Modifier and Type Method Description EventsRequestContext
RestServiceUtils. performEventsRequest(List<Event> events, EventsRequestContext eventsRequestContext)
Execute the list of events using the dedicated eventsRequestContext -
Uses of Event in org.apache.unomi.rest.service.impl
Method parameters in org.apache.unomi.rest.service.impl with type arguments of type Event Modifier and Type Method Description EventsRequestContext
RestServiceUtilsImpl. performEventsRequest(List<Event> events, EventsRequestContext eventsRequestContext)
-
Uses of Event in org.apache.unomi.samples.tweet_button_plugin.actions
Methods in org.apache.unomi.samples.tweet_button_plugin.actions with parameters of type Event Modifier and Type Method Description int
IncrementTweetNumberAction. execute(Action action, Event event)
-
Uses of Event in org.apache.unomi.services.actions
Methods in org.apache.unomi.services.actions with parameters of type Event Modifier and Type Method Description int
ActionExecutorDispatcher. execute(Action action, Event event)
Execute an action dispatcher according to the action type of the action -
Uses of Event in org.apache.unomi.services.actions.impl
Methods in org.apache.unomi.services.actions.impl with parameters of type Event Modifier and Type Method Description int
ActionExecutorDispatcherImpl. execute(Action action, Event event)
protected Object
ActionExecutorDispatcherImpl. executeScript(String script, Event event)
Action
ActionExecutorDispatcherImpl. getContextualAction(Action action, Event event)
-
Uses of Event in org.apache.unomi.services.impl.events
Methods in org.apache.unomi.services.impl.events that return Event Modifier and Type Method Description Event
EventServiceImpl. getEvent(String id)
Methods in org.apache.unomi.services.impl.events that return types with arguments of type Event Modifier and Type Method Description PartialList<Event>
EventServiceImpl. search(Query query)
PartialList<Event>
EventServiceImpl. searchEvents(String sessionId, String[] eventTypes, String query, int offset, int size, String sortBy)
PartialList<Event>
EventServiceImpl. searchEvents(Condition condition, int offset, int size)
Methods in org.apache.unomi.services.impl.events with parameters of type Event Modifier and Type Method Description boolean
EventServiceImpl. hasEventAlreadyBeenRaised(Event event)
boolean
EventServiceImpl. hasEventAlreadyBeenRaised(Event event, boolean session)
boolean
EventServiceImpl. isEventAllowed(Event event, String thirdPartyId)
int
EventServiceImpl. send(Event event)
-
Uses of Event in org.apache.unomi.services.impl.rules
Methods in org.apache.unomi.services.impl.rules with parameters of type Event Modifier and Type Method Description boolean
RulesServiceImpl. canHandle(Event event)
void
RulesServiceImpl. fireAlreadyRaised(RuleListenerService.AlreadyRaisedFor alreadyRaisedFor, Rule rule, Event event)
void
RulesServiceImpl. fireEvaluate(Rule rule, Event event)
void
RulesServiceImpl. fireExecuteActions(Rule rule, Event event)
Set<Rule>
RulesServiceImpl. getMatchingRules(Event event)
int
RulesServiceImpl. onEvent(Event event)
-
Uses of Event in org.apache.unomi.sfdc.actions
Methods in org.apache.unomi.sfdc.actions with parameters of type Event Modifier and Type Method Description int
CreateOrUpdateLeadAction. execute(Action action, Event event)
int
UpdateProfileFromLeadAction. execute(Action action, Event event)
-
Uses of Event in org.apache.unomi.training
Methods in org.apache.unomi.training with parameters of type Event Modifier and Type Method Description int
TrainedNotificationAction. execute(Action action, Event event)
-
Uses of Event in org.apache.unomi.utils
Methods in org.apache.unomi.utils that return types with arguments of type Event Modifier and Type Method Description static List<Event>
HttpUtils. filterValidEvents(com.fasterxml.jackson.databind.node.ArrayNode eventsNode, SchemaService schemaService, com.fasterxml.jackson.core.JsonParser jsonParser)
-
Uses of Event in org.apache.unomi.weatherupdate.actions
Methods in org.apache.unomi.weatherupdate.actions with parameters of type Event Modifier and Type Method Description int
WeatherUpdateAction. execute(Action action, Event event)
-