Package org.nuxeo.ecm.core.api.event
Interface CoreEvent
- All Known Implementing Classes:
CoreEventImpl
public interface CoreEvent
Nuxeo core event.
- Author:
- Julien Anguenot, Bogdan Stefanescu
-
Method Summary
Modifier and TypeMethodDescriptionReturns the event category.Returns the associated event comment.getDate()
Returns the date when the event occurred.Returns the event identifier.getInfo()
Returns the information attached to the event.Returns the principal responsible for this event.Returns the source object that originated the event.
-
Method Details
-
getDate
Date getDate()Returns the date when the event occurred.- Returns:
- a java date object
-
getEventId
String getEventId()Returns the event identifier.- Returns:
- the event identifier
-
getInfo
Returns the information attached to the event.- Returns:
- a map holding the event information
-
getSource
Object getSource()Returns the source object that originated the event.- Returns:
- the object that originated the event
-
getPrincipal
Principal getPrincipal()Returns the principal responsible for this event.- Returns:
- the principal responsible for this event.
-
getCategory
String getCategory()Returns the event category.- Returns:
- the event category
-
getComment
String getComment()Returns the associated event comment.- Returns:
- the associated event comment
-