Package org.apache.unomi.api.services
Interface EventService
- All Known Implementing Classes:
EventServiceImpl
public interface EventService
A service to publish events, notably issued from user interactions with tracked entities, in the context server.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
An error occurred while processing the event.static final int
No change occurred following an event being handled.static final int
The associated profile was updated following an event being handled.static final int
The associated session was updated following an event being handled. -
Method Summary
Modifier and TypeMethodDescriptionauthenticateThirdPartyServer
(String key, String ip) Get the third party server name, if the request is originated from a known peerRetrieves theEvent
by its identifier.Deprecated.use event types insteadRetrieves the set of known event type identifiers.boolean
hasEventAlreadyBeenRaised
(Event event) Checks whether the specified event has already been raised with the same itemId.boolean
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
isEventAllowed
(Event event, String thirdPartyId) Check if the sender is allowed to sent the speecified event.void
removeProfileEvents
(String profileId) Removes all events of the specified profilesearchEvents
(String sessionId, String[] eventTypes, String query, int offset, int size, String sortBy) searchEvents
(Condition condition, int offset, int size) int
Propagates the specified event in the context server, notifyingEventListenerService
instances if needed.
-
Field Details
-
NO_CHANGE
static final int NO_CHANGENo change occurred following an event being handled.- See Also:
-
ERROR
static final int ERRORAn error occurred while processing the event.- See Also:
-
SESSION_UPDATED
static final int SESSION_UPDATEDThe associated session was updated following an event being handled.- See Also:
-
PROFILE_UPDATED
static final int PROFILE_UPDATEDThe associated profile was updated following an event being handled.- See Also:
-
-
Method Details
-
send
Propagates the specified event in the context server, notifyingEventListenerService
instances if needed. If the event is persistent (Event.isPersistent()
, it will be persisted appropriately. Once the event is propagated, anyActionPostExecutor
the event defined will be executed and the user profile updated if needed.- Parameters:
event
- the Event to be propagated- Returns:
- the result of the event handling as combination of EventService flags, to be checked using bitwise AND (&) operator
-
isEventAllowed
Check if the sender is allowed to sent the speecified event. Restricted event must be explicitely allowed for a sender.- Parameters:
event
- event to testthirdPartyId
- third party id- Returns:
- true if the event is allowed
-
authenticateThirdPartyServer
Get the third party server name, if the request is originated from a known peer- Parameters:
key
- the keyip
- the ip- Returns:
- server name
-
getEventProperties
List<EventProperty> getEventProperties()Deprecated.use event types insteadRetrieves the list of available event properties.- Returns:
- a list of available event properties
-
getEventTypeIds
Retrieves the set of known event type identifiers.- Returns:
- the set of known event type identifiers.
-
searchEvents
RetrievesEvent
s matching the specifiedCondition
. Events are ordered according to their time stamp (Event.getTimeStamp()
and paged: onlysize
of them are retrieved, starting with theoffset
-th one.- Parameters:
condition
- the Condition we want the Events to match to be retrievedoffset
- zero or a positive integer specifying the position of the first event in the total ordered collection of matching eventssize
- a positive integer specifying how many matching events should be retrieved or-1
if all of them should be retrieved- Returns:
- a
PartialList
of matching events
-
searchEvents
PartialList<Event> searchEvents(String sessionId, String[] eventTypes, String query, int offset, int size, String sortBy) RetrievesEvent
s for theSession
identified by the provided session identifier, matching any of the provided event types, ordered according to the specifiedsortBy
String and paged: onlysize
of them are retrieved, starting with theoffset
-th one. If aquery
is provided, a full text search is performed on the matching events to further filter them.- Parameters:
sessionId
- the identifier of the user session we're consideringeventTypes
- an array of event type names; the events to retrieve should at least match one of thesequery
- a String to perform full text filtering on events matching the other conditionsoffset
- zero or a positive integer specifying the position of the first event in the total ordered collection of matching eventssize
- a positive integer specifying how many matching events should be retrieved or-1
if all of them should be retrievedsortBy
- an optional (null
if no sorting is required) String of comma (,
) separated property names on which ordering should be performed, ordering elements according to the property order in the String, considering each in turn and moving on to the next one in case of equality of all preceding ones. Each property name is optionally followed by a column (:
) and an order specifier:asc
ordesc
.- Returns:
- a
PartialList
of matching events
-
search
- Parameters:
query
- aQuery
specifying which Events to retrieve- Returns:
- a
PartialList
ofEvent
instances matching the specified query
-
getEvent
Retrieves theEvent
by its identifier. -
hasEventAlreadyBeenRaised
Checks whether the specified event has already been raised either for the associated session or profile depending on the specifiedsession
parameter.- Parameters:
event
- the event we want to checksession
-true
if we want to check if the specified event has already been raised for the associated session,false
if we want to check whether the event has already been raised for the associated profile- Returns:
true
if the event has already been raised,false
otherwise
-
hasEventAlreadyBeenRaised
Checks whether the specified event has already been raised with the same itemId.- Parameters:
event
- the event we want to check- Returns:
true
if the event has already been raised,false
otherwise
-
removeProfileEvents
Removes all events of the specified profile- Parameters:
profileId
- identifier of the profile that we want to remove it's events
-