Package com.saperion.intf
Interface SaSaveInfo
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
SaSaveInfoImpl
public interface SaSaveInfo extends java.io.Serializable
A SaSaveInfo contains information like HDOC, SYSROWID and DDC-name of a created or updated document.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDbName()
Gets the tablename (DDC name) of the saved document.java.lang.String
getHdoc()
Gets the HDOC of the document.java.lang.String
getSysRowId()
Gets the system-wide unique key SYSROWID of the saved document.java.lang.String
getTransactionId()
Gets the transaction ID.
-
-
-
Method Detail
-
getDbName
java.lang.String getDbName()
Gets the tablename (DDC name) of the saved document.- Returns:
- the dbName (DDC name)
-
getHdoc
java.lang.String getHdoc()
Gets the HDOC of the document.- Returns:
- the document id (hdoc)
-
getSysRowId
java.lang.String getSysRowId()
Gets the system-wide unique key SYSROWID of the saved document.NOTE:
The SYSROWID field is a completely independent ID. It never corresponds to the XHDOC (revision ID), even at the time of archiving.- Returns:
- system-wide unique key sysRowId
-
getTransactionId
java.lang.String getTransactionId()
Gets the transaction ID. Not used.- Returns:
- Transaction ID
-
-