Package com.saperion.intf
Interface SaRevision
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
SaRevisionImpl
public interface SaRevision extends java.io.Serializable
Interface for storing and transferring document revision data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getRevisionComment()
Reads the revision comment.java.util.Date
getRevisionDate()
Reads the revision date.java.lang.String
getRevisionNumber()
Reads the revision number.java.lang.String
getRevisionUid()
Reads the revision ID.java.lang.String
getRevisionUser()
Reads the revision user.
-
-
-
Method Detail
-
getRevisionUid
java.lang.String getRevisionUid()
Reads the revision ID.- Returns:
- the revisionUid
-
getRevisionUser
java.lang.String getRevisionUser()
Reads the revision user.- Returns:
- the revisionUser
-
getRevisionComment
java.lang.String getRevisionComment()
Reads the revision comment.- Returns:
- the versionComment
-
getRevisionNumber
java.lang.String getRevisionNumber()
Reads the revision number.- Returns:
- the versionNumber
-
getRevisionDate
java.util.Date getRevisionDate()
Reads the revision date.- Returns:
- the revisionDate
-
-