Class EventServiceImpl
java.lang.Object
org.apache.unomi.services.impl.events.EventServiceImpl
- All Implemented Interfaces:
EventService
-
Field Summary
Fields inherited from interface org.apache.unomi.api.services.EventService
ERROR, NO_CHANGE, PROFILE_UPDATED, SESSION_UPDATED -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionauthenticateThirdPartyServer(String key, String ip) Get the third party server name, if the request is originated from a known peervoidbind(org.osgi.framework.ServiceReference<EventListenerService> serviceReference) Retrieves theEventby its identifier.Retrieves the list of available event properties.Retrieves the set of known event type identifiers.booleanhasEventAlreadyBeenRaised(Event event) Checks whether the specified event has already been raised with the same itemId.booleanhasEventAlreadyBeenRaised(Event event, boolean session) Checks whether the specified event has already been raised either for the associated session or profile depending on the specifiedsessionparameter.booleanisEventAllowed(Event event, String thirdPartyId) Check if the sender is allowed to sent the speecified event.voidremoveProfileEvents(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) intPropagates the specified event in the context server, notifyingEventListenerServiceinstances if needed.voidsetBundleContext(org.osgi.framework.BundleContext bundleContext) voidsetDefinitionsService(DefinitionsService definitionsService) voidsetPersistenceService(PersistenceService persistenceService) voidsetPredefinedEventTypeIds(Set<String> predefinedEventTypeIds) voidsetRestrictedEventTypeIds(Set<String> restrictedEventTypeIds) voidsetThirdPartyConfiguration(Map<String, String> thirdPartyConfiguration) voidunbind(org.osgi.framework.ServiceReference<EventListenerService> serviceReference)
-
Constructor Details
-
EventServiceImpl
public EventServiceImpl()
-
-
Method Details
-
setThirdPartyConfiguration
-
setPredefinedEventTypeIds
-
setRestrictedEventTypeIds
-
setPersistenceService
-
setDefinitionsService
-
setBundleContext
public void setBundleContext(org.osgi.framework.BundleContext bundleContext) -
isEventAllowed
Description copied from interface:EventServiceCheck if the sender is allowed to sent the speecified event. Restricted event must be explicitely allowed for a sender.- Specified by:
isEventAllowedin interfaceEventService- Parameters:
event- event to testthirdPartyId- third party id- Returns:
- true if the event is allowed
-
authenticateThirdPartyServer
Description copied from interface:EventServiceGet the third party server name, if the request is originated from a known peer- Specified by:
authenticateThirdPartyServerin interfaceEventService- Parameters:
key- the keyip- the ip- Returns:
- server name
-
send
Description copied from interface:EventServicePropagates the specified event in the context server, notifyingEventListenerServiceinstances if needed. If the event is persistent (Event.isPersistent(), it will be persisted appropriately. Once the event is propagated, anyActionPostExecutorthe event defined will be executed and the user profile updated if needed.- Specified by:
sendin interfaceEventService- 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
-
getEventProperties
Description copied from interface:EventServiceRetrieves the list of available event properties.- Specified by:
getEventPropertiesin interfaceEventService- Returns:
- a list of available event properties
-
getEventTypeIds
Description copied from interface:EventServiceRetrieves the set of known event type identifiers.- Specified by:
getEventTypeIdsin interfaceEventService- Returns:
- the set of known event type identifiers.
-
searchEvents
Description copied from interface:EventServiceRetrievesEvents matching the specifiedCondition. Events are ordered according to their time stamp (Event.getTimeStamp()and paged: onlysizeof them are retrieved, starting with theoffset-th one.- Specified by:
searchEventsin interfaceEventService- 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-1if all of them should be retrieved- Returns:
- a
PartialListof matching events
-
searchEvents
public PartialList<Event> searchEvents(String sessionId, String[] eventTypes, String query, int offset, int size, String sortBy) Description copied from interface:EventServiceRetrievesEvents for theSessionidentified by the provided session identifier, matching any of the provided event types, ordered according to the specifiedsortByString and paged: onlysizeof them are retrieved, starting with theoffset-th one. If aqueryis provided, a full text search is performed on the matching events to further filter them.- Specified by:
searchEventsin interfaceEventService- 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-1if all of them should be retrievedsortBy- an optional (nullif 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:ascordesc.- Returns:
- a
PartialListof matching events
-
search
Description copied from interface:EventService- Specified by:
searchin interfaceEventService- Parameters:
query- aQueryspecifying which Events to retrieve- Returns:
- a
PartialListofEventinstances matching the specified query
-
getEvent
Description copied from interface:EventServiceRetrieves theEventby its identifier.- Specified by:
getEventin interfaceEventService- Parameters:
id- the identifier of theEventto retrieve- Returns:
- the
Eventidentified by the specified identifier ornullif no such profile exists
-
hasEventAlreadyBeenRaised
Description copied from interface:EventServiceChecks whether the specified event has already been raised with the same itemId.- Specified by:
hasEventAlreadyBeenRaisedin interfaceEventService- Parameters:
event- the event we want to check- Returns:
trueif the event has already been raised,falseotherwise
-
hasEventAlreadyBeenRaised
Description copied from interface:EventServiceChecks whether the specified event has already been raised either for the associated session or profile depending on the specifiedsessionparameter.- Specified by:
hasEventAlreadyBeenRaisedin interfaceEventService- Parameters:
event- the event we want to checksession-trueif we want to check if the specified event has already been raised for the associated session,falseif we want to check whether the event has already been raised for the associated profile- Returns:
trueif the event has already been raised,falseotherwise
-
bind
-
unbind
-
removeProfileEvents
Description copied from interface:EventServiceRemoves all events of the specified profile- Specified by:
removeProfileEventsin interfaceEventService- Parameters:
profileId- identifier of the profile that we want to remove it's events
-