Package org.nuxeo.ecm.platform.audit.api
Interface LogEntry
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
LogEntryImpl
public interface LogEntry extends Serializable
Log entry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCategory()Returns the category for this log entry.StringgetComment()Returns the associated comment for this log entry.StringgetDocLifeCycle()Return the life cycle if the document related to the log entry.StringgetDocPath()Returns the doc path related to the log entry.StringgetDocType()Returns the doc type related to the log entry.StringgetDocUUID()Returns the doc UUID related to the log entry.DategetEventDate()Returns the date of the event that originated the log entry.StringgetEventId()Returns the identifier of the event that originated the log entry.Map<String,ExtendedInfo>getExtendedInfos()longgetId()DategetLogDate()UIAuditCommentgetPreprocessedComment()Return the comment preprocessed to be ready for display.StringgetPrincipalName()Returns the name of the principal who originated the log entry.StringgetRepositoryId()Returns the repository id related to the log entry.voidsetCategory(String category)voidsetComment(String comment)voidsetDocLifeCycle(String docLifeCycle)voidsetDocPath(String docPath)voidsetDocType(String docType)voidsetDocUUID(String docUUID)voidsetDocUUID(DocumentRef docRef)voidsetEventDate(Date eventDate)voidsetEventId(String eventId)voidsetExtendedInfos(Map<String,ExtendedInfo> infos)voidsetId(long id)voidsetLogDate(Date logDate)voidsetPreprocessedComment(UIAuditComment uiComment)voidsetPrincipalName(String principalName)voidsetRepositoryId(String repositoryId)
-
-
-
Method Detail
-
getId
long getId()
- Returns:
- the log identifier
-
setId
void setId(long id)
-
getPrincipalName
String getPrincipalName()
Returns the name of the principal who originated the log entry.- Returns:
- the name of the principal who originated the log entry
-
setPrincipalName
void setPrincipalName(String principalName)
-
getEventId
String getEventId()
Returns the identifier of the event that originated the log entry.- Returns:
- the identifier of the event that originated the log entry
-
setEventId
void setEventId(String eventId)
-
getLogDate
Date getLogDate()
- Returns:
- the date of the log insertion: this up to max transaction timeout later than eventDate. This date is useful for services such as Nuxeo Drive that need fine grained incremental near-monotonic access to the audit log.
- Since:
- 5.7, 5.6-HF16
-
setLogDate
void setLogDate(Date logDate)
-
getEventDate
Date getEventDate()
Returns the date of the event that originated the log entry.- Returns:
- the date of the event that originated the log entry
-
setEventDate
void setEventDate(Date eventDate)
-
getDocUUID
String getDocUUID()
Returns the doc UUID related to the log entry.It might be null if the event that originated the event is noe bound to any document.
- Returns:
- the doc UUID related to the log entry.
-
setDocUUID
void setDocUUID(String docUUID)
-
setDocUUID
void setDocUUID(DocumentRef docRef)
-
getDocPath
String getDocPath()
Returns the doc path related to the log entry.It might be null if the event that originated the event is noe bound to any document.
- Returns:
- the doc path related to the log entry.
-
setDocPath
void setDocPath(String docPath)
-
getDocType
String getDocType()
Returns the doc type related to the log entry.It might be null if the event that originated the event is not bound to any document.
- Returns:
- the doc type related to the log entry.
-
setDocType
void setDocType(String docType)
-
getCategory
String getCategory()
Returns the category for this log entry.This is defined at client level. Categories are not restricted in any ways.
- Returns:
- the category for this log entry.
-
setCategory
void setCategory(String category)
-
getComment
String getComment()
Returns the associated comment for this log entry.- Returns:
- the associated comment for this log entry
-
setComment
void setComment(String comment)
-
getDocLifeCycle
String getDocLifeCycle()
Return the life cycle if the document related to the log entry.It might be null if the event that originated the event is noe bound to any document.
- Returns:
- the life cycle if the document related to the log entry.
-
setDocLifeCycle
void setDocLifeCycle(String docLifeCycle)
-
getRepositoryId
String getRepositoryId()
Returns the repository id related to the log entry.- Returns:
- the repository id
-
setRepositoryId
void setRepositoryId(String repositoryId)
-
getExtendedInfos
Map<String,ExtendedInfo> getExtendedInfos()
-
setExtendedInfos
void setExtendedInfos(Map<String,ExtendedInfo> infos)
-
getPreprocessedComment
UIAuditComment getPreprocessedComment()
Return the comment preprocessed to be ready for display. (extract info about linked documents) Only available when accessed via the entry is fetched via theAuditPageProvider
-
setPreprocessedComment
void setPreprocessedComment(UIAuditComment uiComment)
-
-