Interface ConfluenceEntityUpdated
-
- All Known Implementing Classes:
PageEditedEvent
public interface ConfluenceEntityUpdated
Detached event about confluence entity updated. It has only ids and versions. Purpose of versions is to give developer ability to check if event is out of date in case if it was processed asynchronously.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Long
getCurrentId()
Integer
getCurrentVersion()
Long
getOriginalId()
Integer
getOriginalVersion()
-
-
-
Method Detail
-
getOriginalId
Long getOriginalId()
- Returns:
- the original content id before the update
-
getOriginalVersion
Integer getOriginalVersion()
- Returns:
- original version
-
getCurrentId
Long getCurrentId()
- Returns:
- the new content id after the update
-
getCurrentVersion
Integer getCurrentVersion()
- Returns:
- current version
-
-