Skip navigation links
A B C D E F G H I L M N O P Q R S T U V W 

A

AbstractEntityQueryCondition - Class in org.xwiki.eventstream.query
A condition related to an entity associated with and event.
AbstractEntityQueryCondition(String, boolean) - Constructor for class org.xwiki.eventstream.query.AbstractEntityQueryCondition
 
AbstractEventStreamEvent - Class in org.xwiki.eventstream.events
Abstract class for every event that is related to the EventStream.
AbstractEventStreamEvent() - Constructor for class org.xwiki.eventstream.events.AbstractEventStreamEvent
 
AbstractPropertyQueryCondition - Class in org.xwiki.eventstream.query
A condition with a property.
AbstractPropertyQueryCondition(boolean, String) - Constructor for class org.xwiki.eventstream.query.AbstractPropertyQueryCondition
 
AbstractRecordableEventDescriptor - Class in org.xwiki.eventstream
Abstract implementation of RecordableEventDescriptor.
AbstractRecordableEventDescriptor(String, String) - Constructor for class org.xwiki.eventstream.AbstractRecordableEventDescriptor
Construct an AbstractRecordableEventDescriptor.
addEvent(Event) - Method in interface org.xwiki.eventstream.EventStream
Deprecated.
since 12.3RC1, use EventStore.saveEvent(Event) instead
addEvents(Event...) - Method in class org.xwiki.eventstream.EventGroup
Add more events to this group.
addSort(String, SortableEventQuery.SortClause.Order) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
Adds a single sort clause to the end of the current sort information.
after(Date) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
and() - Method in class org.xwiki.eventstream.query.SimpleEventQuery
Group together the previous and next condition in a AND group.
applicationTranslationKey - Variable in class org.xwiki.eventstream.AbstractRecordableEventDescriptor
 

B

before(Date) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 

C

clearEvents() - Method in class org.xwiki.eventstream.EventGroup
Remove all the events from this group.
close() - Method in class org.xwiki.eventstream.query.SimpleEventQuery
Stop the current group of conditions.
CompareQueryCondition - Class in org.xwiki.eventstream.query
A comparison between a property and a passed value.
CompareQueryCondition(String, Object, CompareQueryCondition.CompareType) - Constructor for class org.xwiki.eventstream.query.CompareQueryCondition
 
CompareQueryCondition(String, Object, CompareQueryCondition.CompareType, boolean) - Constructor for class org.xwiki.eventstream.query.CompareQueryCondition
 
CompareQueryCondition.CompareType - Enum in org.xwiki.eventstream.query
The type of comparison.
componentManager - Variable in class org.xwiki.eventstream.AbstractRecordableEventDescriptor
 
conditions - Variable in class org.xwiki.eventstream.query.GroupQueryCondition
 
contextualLocalizationManager - Variable in class org.xwiki.eventstream.AbstractRecordableEventDescriptor
 
convert(RecordableEvent, String, Object) - Method in interface org.xwiki.eventstream.RecordableEventConverter
Convert a notification event to a stream event.
countEvents() - Method in interface org.xwiki.eventstream.EventStream
Deprecated.
since 12.6.1, use EventStore.search(EventQuery) instead
createEvent() - Method in interface org.xwiki.eventstream.EventFactory
Create a new event with some fields already filled in.
createRawEvent() - Method in interface org.xwiki.eventstream.EventFactory
Create a new event without any of the fields filled in.

D

deleteAllForEntity(Date, String) - Method in interface org.xwiki.eventstream.EventStatusManager
Deprecated.
deleteEvent(String) - Method in interface org.xwiki.eventstream.EventStore
Asynchronously deleted the event matching the passed identifier and all associated statuses.
deleteEvent(Event) - Method in interface org.xwiki.eventstream.EventStore
Asynchronously deleted the event.
deleteEvent(Event) - Method in interface org.xwiki.eventstream.EventStream
Deprecated.
since 12.3RC1, use EventStore.deleteEvent(String) instead
deleteEventStatus(EventStatus) - Method in interface org.xwiki.eventstream.EventStatusManager
Deprecated.
deleteEventStatus(EventStatus) - Method in interface org.xwiki.eventstream.EventStore
Asynchronously delete from the store the given status.
deleteEventStatuses(String, Date) - Method in interface org.xwiki.eventstream.EventStore
Asynchronously delete from the store all the status associated with the passed entity and before the passed date.
deleteMailEntityEvent(EntityEvent) - Method in interface org.xwiki.eventstream.EventStore
Asynchronously delete from the store the given mail status.
descriptionTranslationKey - Variable in class org.xwiki.eventstream.AbstractRecordableEventDescriptor
 

E

EMPTY - Static variable in interface org.xwiki.eventstream.EventSearchResult
An empty instance of EventSearchResult.
EntityEvent - Interface in org.xwiki.eventstream
Associated an event to an entity.
eq(String, Object) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
equals(Object) - Method in class org.xwiki.eventstream.AbstractRecordableEventDescriptor
 
equals(Object) - Method in class org.xwiki.eventstream.query.AbstractEntityQueryCondition
 
equals(Object) - Method in class org.xwiki.eventstream.query.AbstractPropertyQueryCondition
 
equals(Object) - Method in class org.xwiki.eventstream.query.CompareQueryCondition
 
equals(Object) - Method in class org.xwiki.eventstream.query.GroupQueryCondition
 
equals(Object) - Method in class org.xwiki.eventstream.query.InQueryCondition
 
equals(Object) - Method in class org.xwiki.eventstream.query.QueryCondition
 
equals(Object) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
equals(Object) - Method in class org.xwiki.eventstream.query.SortableEventQuery.SortClause
 
equals(Object) - Method in class org.xwiki.eventstream.query.StatusQueryCondition
 
Event - Interface in org.xwiki.eventstream
A recorded event that occurred at some point in the wiki.
Event.Importance - Enum in org.xwiki.eventstream
The importance of an event.
EVENT_LOOP_CONTEXT_LOCK_PROPERTY - Static variable in class org.xwiki.eventstream.events.AbstractEventStreamEvent
Deprecated.
not set anymore
EventFactory - Interface in org.xwiki.eventstream
A factory which creates Event objects ready to be used.
EventGroup - Class in org.xwiki.eventstream
A group of related events, all happening as a consequence of the same action.
EventGroup() - Constructor for class org.xwiki.eventstream.EventGroup
Default constructor that creates an empty event group.
EventGroup(List<Event>) - Constructor for class org.xwiki.eventstream.EventGroup
Constructor that creates a group containing the passed events.
EventGroup(Set<Event>) - Constructor for class org.xwiki.eventstream.EventGroup
Constructor that creates a group containing the passed events.
EventGroup(Event...) - Constructor for class org.xwiki.eventstream.EventGroup
Constructor that creates a group containing the passed events.
EventQuery - Interface in org.xwiki.eventstream
Allow querying events.
EventSearchResult - Interface in org.xwiki.eventstream
The result of a search in the EventStore.
EventStatus - Interface in org.xwiki.eventstream
Define a status for any couple of event/entity.
EventStatusManager - Interface in org.xwiki.eventstream
Handle the statuses for the events.
EventStore - Interface in org.xwiki.eventstream
Save and access store events.
EventStream - Interface in org.xwiki.eventstream
Deprecated.
since 12.5RC1, use EventStore instead
EventStreamAddedEvent - Class in org.xwiki.eventstream.events
Event triggered when a new event is registered inside of the EventStream.
EventStreamAddedEvent() - Constructor for class org.xwiki.eventstream.events.EventStreamAddedEvent
 
EventStreamDeletedEvent - Class in org.xwiki.eventstream.events
Event triggered when an event is deleted from the EventStream.
EventStreamDeletedEvent() - Constructor for class org.xwiki.eventstream.events.EventStreamDeletedEvent
 
EventStreamException - Exception in org.xwiki.eventstream
Exception specific to the Event Stream module.
EventStreamException() - Constructor for exception org.xwiki.eventstream.EventStreamException
Construct an EventStreamException.
EventStreamException(String) - Constructor for exception org.xwiki.eventstream.EventStreamException
Constructs a new exception with the specified detail message.
EventStreamException(Throwable) - Constructor for exception org.xwiki.eventstream.EventStreamException
 
EventStreamException(String, Throwable) - Constructor for exception org.xwiki.eventstream.EventStreamException
Constructs a new exception with the specified detail message and cause.
EventStreamScriptService - Class in org.xwiki.eventstream.script
Script services for the Event Stream Module.
EventStreamScriptService() - Constructor for class org.xwiki.eventstream.script.EventStreamScriptService
 

F

FIELD_APPLICATION - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_BODY - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_DATE - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_DOCUMENT - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_DOCUMENTTITLE - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_DOCUMENTVERSION - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_GROUPID - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_HIDDEN - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_ID - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_IMPORTANCE - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_PREFILTERED - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_RELATEDENTITY - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_SPACE - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_STREAM - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_TARGET - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_TITLE - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_TYPE - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_URL - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_USER - Static variable in interface org.xwiki.eventstream.Event
 
FIELD_WIKI - Static variable in interface org.xwiki.eventstream.Event
 

G

getApplication() - Method in interface org.xwiki.eventstream.Event
Events can be triggered by different applications, not only the main wiki update events: user statuses, blog pingbacks, new extension added...
getApplicationIcon() - Method in interface org.xwiki.eventstream.RecordableEventDescriptor
 
getApplicationId() - Method in interface org.xwiki.eventstream.RecordableEventDescriptor
 
getApplicationName() - Method in class org.xwiki.eventstream.AbstractRecordableEventDescriptor
 
getApplicationName() - Method in interface org.xwiki.eventstream.RecordableEventDescriptor
 
getAuthorReference() - Method in interface org.xwiki.eventstream.UntypedRecordableEventDescriptor
Get a DocumentReference to the author of the descriptor.
getBody() - Method in interface org.xwiki.eventstream.Event
A larger section of text where the event can store some data.
getConditions() - Method in class org.xwiki.eventstream.query.GroupQueryCondition
 
getDate() - Method in interface org.xwiki.eventstream.Event
An event happens at a precise date.
getDescription() - Method in class org.xwiki.eventstream.AbstractRecordableEventDescriptor
 
getDescription() - Method in interface org.xwiki.eventstream.RecordableEventDescriptor
 
getDescriptorForEventType(String, boolean) - Method in interface org.xwiki.eventstream.RecordableEventDescriptorManager
 
getDescriptorForEventType(String, boolean) - Method in class org.xwiki.eventstream.script.EventStreamScriptService
 
getDocument() - Method in interface org.xwiki.eventstream.Event
Document-related events target a certain document.
getDocumentTitle() - Method in interface org.xwiki.eventstream.Event
The document title is usually more important than the document name.
getDocumentVersion() - Method in interface org.xwiki.eventstream.Event
For events related to documents, this field records the version of the document at the time when the event occurred.
getEntityId() - Method in interface org.xwiki.eventstream.EntityEvent
 
getEvent() - Method in interface org.xwiki.eventstream.EntityEvent
 
getEvent(String) - Method in interface org.xwiki.eventstream.EventStore
Get the event matching the passed identifier.
getEvent(String) - Method in interface org.xwiki.eventstream.EventStream
Deprecated.
since 12.3RC1, use EventStore.getEvent(String) instead
getEventCount() - Method in class org.xwiki.eventstream.script.EventStreamScriptService
 
getEvents() - Method in class org.xwiki.eventstream.EventGroup
List the events that are part of this group.
getEventStatus(List<Event>, List<String>) - Method in interface org.xwiki.eventstream.EventStatusManager
Get the list of statuses concerning the given events and the given entities.
getEventTitle() - Method in interface org.xwiki.eventstream.RecordableEventDescriptor
 
getEventTriggers() - Method in interface org.xwiki.eventstream.UntypedRecordableEventDescriptor
Get a list of the events that should trigger this particular event.
getEventType() - Method in interface org.xwiki.eventstream.RecordableEventDescriptor
 
getEventType() - Method in interface org.xwiki.eventstream.UntypedRecordableEvent
Get the event type (the hint) of the current event.
getEventTypeIcon() - Method in interface org.xwiki.eventstream.RecordableEventDescriptor
 
getFilter() - Method in interface org.xwiki.eventstream.RecordableEventDescriptor
 
getGroupId() - Method in interface org.xwiki.eventstream.Event
Multiple events can correspond to the same activity, so events can be grouped under the same GroupID.
getHidden() - Method in interface org.xwiki.eventstream.Event
 
getId() - Method in interface org.xwiki.eventstream.Event
Each event has a unique ID.
getImportance() - Method in interface org.xwiki.eventstream.Event
Different events can have a different importance.
getLegacyEventCount() - Method in class org.xwiki.eventstream.script.EventStreamScriptService
 
getLegacyMigrationStatus() - Method in class org.xwiki.eventstream.script.EventStreamScriptService
Get the status of the job responsible for copying legacy event in the new store.
getLimit() - Method in interface org.xwiki.eventstream.query.PageableEventQuery
 
getLimit() - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
getLocalizedMessage(String) - Method in class org.xwiki.eventstream.AbstractRecordableEventDescriptor
Render a translation key in the context of the namespace (e.g.
getMainEvent() - Method in class org.xwiki.eventstream.EventGroup
Get the most important event in this group.
getObjectTypes() - Method in interface org.xwiki.eventstream.UntypedRecordableEventDescriptor
Get the object that, associated with one of the events returned by UntypedRecordableEventDescriptor.getEventTriggers() should trigger this particular event.
getOffset() - Method in interface org.xwiki.eventstream.EventSearchResult
 
getOffset() - Method in interface org.xwiki.eventstream.query.PageableEventQuery
 
getOffset() - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
getOrder() - Method in class org.xwiki.eventstream.query.SortableEventQuery.SortClause
 
getParameters() - Method in interface org.xwiki.eventstream.Event
 
getProperty() - Method in class org.xwiki.eventstream.query.AbstractPropertyQueryCondition
 
getProperty() - Method in class org.xwiki.eventstream.query.SortableEventQuery.SortClause
 
getRecordableEventDescriptors(boolean) - Method in interface org.xwiki.eventstream.RecordableEventDescriptorManager
 
getRecordableEventDescriptors(boolean) - Method in class org.xwiki.eventstream.script.EventStreamScriptService
 
getRelatedEntity() - Method in interface org.xwiki.eventstream.Event
Some events may be related to a more specific entity in the target document, like an attachment or an object, or may relate to another document besides the main related document.
getRelatedEvents(Event) - Method in interface org.xwiki.eventstream.EventStream
Deprecated.
since 12.6, use EventStore.search(EventQuery) instead
getSize() - Method in interface org.xwiki.eventstream.EventSearchResult
 
getSorts() - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
getSorts() - Method in interface org.xwiki.eventstream.query.SortableEventQuery
 
getSpace() - Method in interface org.xwiki.eventstream.Event
Document-related events target a certain document, and documents belong to a space; this is the space of the target document.
getStatusEntityId() - Method in class org.xwiki.eventstream.query.AbstractEntityQueryCondition
 
getStatusRead() - Method in class org.xwiki.eventstream.query.StatusQueryCondition
 
getStream() - Method in interface org.xwiki.eventstream.Event
Events can happen in different contexts; for example, wiki activity events happen in different spaces, user statuses are targeted to different groups.
getSupportedEvents() - Method in interface org.xwiki.eventstream.RecordableEventConverter
 
getTarget() - Method in interface org.xwiki.eventstream.Event
 
getTarget() - Method in interface org.xwiki.eventstream.TargetableEvent
 
getTargetExpression() - Method in interface org.xwiki.eventstream.UntypedRecordableEventDescriptor
 
getTitle() - Method in interface org.xwiki.eventstream.Event
A name for the event.
getTotalHits() - Method in interface org.xwiki.eventstream.EventSearchResult
 
getType() - Method in interface org.xwiki.eventstream.Event
Events have different types: adding a comment, updating an attachment, importing an application, etc.
getType() - Method in class org.xwiki.eventstream.query.CompareQueryCondition
 
getUrl() - Method in interface org.xwiki.eventstream.Event
If an event happens in an URL-accessible location (a document), or if the event itself can be seen at a given URL, this field stores that URL.
getUser() - Method in interface org.xwiki.eventstream.Event
Event usually occur as the result of a registered user activity.
getValidationExpression() - Method in interface org.xwiki.eventstream.UntypedRecordableEventDescriptor
Gets the event validation expression.
getValue() - Method in class org.xwiki.eventstream.query.CompareQueryCondition
 
getValues() - Method in class org.xwiki.eventstream.query.InQueryCondition
 
getWiki() - Method in interface org.xwiki.eventstream.Event
In a wiki farm, each event happens in one of the wikis.
greater(String, Object) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
greaterOrEq(String, Object) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
GroupQueryCondition - Class in org.xwiki.eventstream.query
A group of conditions.
GroupQueryCondition(boolean, boolean, QueryCondition...) - Constructor for class org.xwiki.eventstream.query.GroupQueryCondition
 

H

hashCode() - Method in class org.xwiki.eventstream.AbstractRecordableEventDescriptor
 
hashCode() - Method in class org.xwiki.eventstream.query.AbstractEntityQueryCondition
 
hashCode() - Method in class org.xwiki.eventstream.query.AbstractPropertyQueryCondition
 
hashCode() - Method in class org.xwiki.eventstream.query.CompareQueryCondition
 
hashCode() - Method in class org.xwiki.eventstream.query.GroupQueryCondition
 
hashCode() - Method in class org.xwiki.eventstream.query.InQueryCondition
 
hashCode() - Method in class org.xwiki.eventstream.query.QueryCondition
 
hashCode() - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
hashCode() - Method in class org.xwiki.eventstream.query.SortableEventQuery.SortClause
 
hashCode() - Method in class org.xwiki.eventstream.query.StatusQueryCondition
 

I

in(String, List<?>) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
in(String, Object...) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
InQueryCondition - Class in org.xwiki.eventstream.query
A condition which is true if the property value is equals to one of the passed values.
InQueryCondition(boolean, String, List<Object>) - Constructor for class org.xwiki.eventstream.query.InQueryCondition
 
isEnabled(String) - Method in interface org.xwiki.eventstream.RecordableEventDescriptor
 
isOr() - Method in class org.xwiki.eventstream.query.GroupQueryCondition
 
isPrefiltered() - Method in interface org.xwiki.eventstream.Event
 
isRead() - Method in interface org.xwiki.eventstream.EventStatus
 
isReversed() - Method in class org.xwiki.eventstream.query.QueryCondition
 

L

less(String, Object) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
lessOrEq(String, Object) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
logger - Variable in class org.xwiki.eventstream.AbstractRecordableEventDescriptor
 

M

MailEntityAddedEvent - Class in org.xwiki.eventstream.events
Event triggered when a new mail entity event is associated with an event in the store.
MailEntityAddedEvent() - Constructor for class org.xwiki.eventstream.events.MailEntityAddedEvent
 
MailEntityDeleteEvent - Class in org.xwiki.eventstream.events
Event triggered when a mail entity event is removed from the store.
MailEntityDeleteEvent() - Constructor for class org.xwiki.eventstream.events.MailEntityDeleteEvent
 
MailEntityQueryCondition - Class in org.xwiki.eventstream.query
A condition related to the association indicating if an entity should receive a mail for an event.
MailEntityQueryCondition(String, boolean) - Constructor for class org.xwiki.eventstream.query.MailEntityQueryCondition
 
matches(Object) - Method in class org.xwiki.eventstream.events.AbstractEventStreamEvent
 

N

namespaceContextExecutor - Variable in class org.xwiki.eventstream.AbstractRecordableEventDescriptor
 
not() - Method in class org.xwiki.eventstream.query.SimpleEventQuery
Reverse the following filter.

O

open() - Method in class org.xwiki.eventstream.query.SimpleEventQuery
Start a new group of conditions.
or() - Method in class org.xwiki.eventstream.query.SimpleEventQuery
Group together the previous and next condition in a OR group.
org.xwiki.eventstream - package org.xwiki.eventstream
 
org.xwiki.eventstream.events - package org.xwiki.eventstream.events
 
org.xwiki.eventstream.query - package org.xwiki.eventstream.query
 
org.xwiki.eventstream.script - package org.xwiki.eventstream.script
 

P

PageableEventQuery - Interface in org.xwiki.eventstream.query
Allow paging events.
prefilterEvent(Event) - Method in interface org.xwiki.eventstream.EventStore
Asynchronously update the event to indicate that it's been pre filtered.

Q

QueryCondition - Class in org.xwiki.eventstream.query
Filter the result of the search.
QueryCondition(boolean) - Constructor for class org.xwiki.eventstream.query.QueryCondition
 

R

RecordableEvent - Interface in org.xwiki.eventstream
An event that should be stored by the Event Stream.
RecordableEventConverter - Interface in org.xwiki.eventstream
Convert a RecordableEvent to an Event that could be stored in the event stream.
RecordableEventDescriptor - Interface in org.xwiki.eventstream
Provide a description for a specific implementation of RecordableEvent so that users can know what the event is about.
RecordableEventDescriptor.EventFilter - Enum in org.xwiki.eventstream
The different filters we support to retrieve event.
RecordableEventDescriptorManager - Interface in org.xwiki.eventstream
Get all RecordableEventDescriptors that are present in the wiki.

S

saveEvent(Event) - Method in interface org.xwiki.eventstream.EventStore
Asynchronously save in the store the given event.
saveEventStatus(EventStatus) - Method in interface org.xwiki.eventstream.EventStatusManager
Deprecated.
since 12.3RC1, use EventStore.saveEventStatus(EventStatus) instead
saveEventStatus(EventStatus) - Method in interface org.xwiki.eventstream.EventStore
Asynchronously save in the storage the given status.
saveMailEntityEvent(EntityEvent) - Method in interface org.xwiki.eventstream.EventStore
Asynchronously save in the storage the given mail status.
search(EventQuery) - Method in interface org.xwiki.eventstream.EventStore
Search for event according to condition provided by the EventQuery.
search(EventQuery, Set<String>) - Method in interface org.xwiki.eventstream.EventStore
Search for event according to condition provided by the EventQuery.
searchEvents(Query) - Method in interface org.xwiki.eventstream.EventStream
Deprecated.
since 12.5RC1, use EventStore.search(EventQuery) instead
setApplication(String) - Method in interface org.xwiki.eventstream.Event
 
setBody(String) - Method in interface org.xwiki.eventstream.Event
 
setDate(Date) - Method in interface org.xwiki.eventstream.Event
 
setDocument(DocumentReference) - Method in interface org.xwiki.eventstream.Event
 
setDocumentTitle(String) - Method in interface org.xwiki.eventstream.Event
 
setDocumentVersion(String) - Method in interface org.xwiki.eventstream.Event
 
setGroupId(String) - Method in interface org.xwiki.eventstream.Event
 
setHidden(boolean) - Method in interface org.xwiki.eventstream.Event
 
setId(String) - Method in interface org.xwiki.eventstream.Event
 
setImportance(Event.Importance) - Method in interface org.xwiki.eventstream.Event
 
setLimit(long) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
setOffset(long) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
setParameters(Map<String, String>) - Method in interface org.xwiki.eventstream.Event
 
setPrefiltered(boolean) - Method in interface org.xwiki.eventstream.Event
 
setRelatedEntity(EntityReference) - Method in interface org.xwiki.eventstream.Event
 
setSpace(SpaceReference) - Method in interface org.xwiki.eventstream.Event
 
setStream(String) - Method in interface org.xwiki.eventstream.Event
 
setTarget(Set<String>) - Method in interface org.xwiki.eventstream.Event
 
setTitle(String) - Method in interface org.xwiki.eventstream.Event
 
setType(String) - Method in interface org.xwiki.eventstream.Event
 
setUrl(URL) - Method in interface org.xwiki.eventstream.Event
 
setUser(DocumentReference) - Method in interface org.xwiki.eventstream.Event
 
setWiki(WikiReference) - Method in interface org.xwiki.eventstream.Event
 
SimpleEventQuery - Class in org.xwiki.eventstream.query
A very basic implementation of EventQuery.
SimpleEventQuery() - Constructor for class org.xwiki.eventstream.query.SimpleEventQuery
An empty query.
SimpleEventQuery(long, long) - Constructor for class org.xwiki.eventstream.query.SimpleEventQuery
 
SortableEventQuery - Interface in org.xwiki.eventstream.query
Allow sorting events.
SortableEventQuery.SortClause - Class in org.xwiki.eventstream.query
The sort clause to apply to the found events.
SortableEventQuery.SortClause.Order - Enum in org.xwiki.eventstream.query
The order to apply.
SortClause(String, SortableEventQuery.SortClause.Order) - Constructor for class org.xwiki.eventstream.query.SortableEventQuery.SortClause
 
startLegacyMigration(Date) - Method in class org.xwiki.eventstream.script.EventStreamScriptService
 
StatusQueryCondition - Class in org.xwiki.eventstream.query
A condition related to the status of an event for a specific entity.
StatusQueryCondition(String, Boolean, boolean) - Constructor for class org.xwiki.eventstream.query.StatusQueryCondition
 
stream() - Method in interface org.xwiki.eventstream.EventSearchResult
 

T

TargetableEvent - Interface in org.xwiki.eventstream
An event that specify which entities are concerned or interested by it.
toString() - Method in class org.xwiki.eventstream.EventGroup
 
toString() - Method in class org.xwiki.eventstream.query.AbstractEntityQueryCondition
 
toString() - Method in class org.xwiki.eventstream.query.AbstractPropertyQueryCondition
 
toString() - Method in class org.xwiki.eventstream.query.CompareQueryCondition
 
toString() - Method in class org.xwiki.eventstream.query.GroupQueryCondition
 
toString() - Method in class org.xwiki.eventstream.query.InQueryCondition
 
toString() - Method in class org.xwiki.eventstream.query.QueryCondition
 
toString() - Method in class org.xwiki.eventstream.query.SimpleEventQuery
 
toString() - Method in class org.xwiki.eventstream.query.SortableEventQuery.SortClause
 
toString() - Method in class org.xwiki.eventstream.query.StatusQueryCondition
 

U

UntypedRecordableEvent - Interface in org.xwiki.eventstream
This interface represents an event that is not identified by a specific class, but by its component hint.
UntypedRecordableEventDescriptor - Interface in org.xwiki.eventstream
This interface represents the descriptor of an UntypedRecordableEvent.

V

valueOf(String) - Static method in enum org.xwiki.eventstream.Event.Importance
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.xwiki.eventstream.query.CompareQueryCondition.CompareType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.xwiki.eventstream.query.SortableEventQuery.SortClause.Order
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.xwiki.eventstream.RecordableEventDescriptor.EventFilter
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.xwiki.eventstream.Event.Importance
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.xwiki.eventstream.query.CompareQueryCondition.CompareType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.xwiki.eventstream.query.SortableEventQuery.SortClause.Order
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.xwiki.eventstream.RecordableEventDescriptor.EventFilter
Returns an array containing the constants of this enum type, in the order they are declared.

W

withMail(String) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
Select events associated for which the passed entity should receive mails.
withStatus(String) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
Select only event associated with the passed status entity.
withStatus(String, boolean) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
Select only event associated with the passed status entity.
withStatus(boolean) - Method in class org.xwiki.eventstream.query.SimpleEventQuery
Select only event associated with the passed status entity.
A B C D E F G H I L M N O P Q R S T U V W 
Skip navigation links

Copyright © 2004–2021 XWiki. All rights reserved.