Interface RevisionMetadata
-
- All Known Implementing Classes:
RevisionMetadataType
public interface RevisionMetadataThis is the interface for the metadata associated with ahistoric revisionof anrevisioned entity.- Since:
- 3.2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAuthor()This method gets the identifier (login) of the author who created this revision.DategetDate()This method gets the date when this revision was created (closed).NumbergetRevision()This method gets therevision number.
-
-
-
Method Detail
-
getRevision
Number getRevision()
This method gets therevision number.- Returns:
- the revision number.
-
getDate
Date getDate()
This method gets the date when this revision was created (closed).- Returns:
- the date of completion or
nullif the according entity is the latest revision.
-
getAuthor
String getAuthor()
This method gets the identifier (login) of the author who created this revision.- Returns:
- the author. May be
null(if committed outside user scope).
-
-