Interface DocumentArchiveMetaInfo
-
- All Known Implementing Classes:
ClassicConnectorDocumentArchiveMetaInfo
,MultipageTiffDocumentArchiveMetaInfo
public interface DocumentArchiveMetaInfo
Holds the meta information about a document that is stored in the archive as opposed toDocumentDatabaseMetaInfo
that holds meta information obtained from the database.- Author:
- jsc
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
DocumentArchiveMetaInfo.ElementArchiveMetaInfo
Holds the meta information about a page of a document that is stored in the archive.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCreateUser()
java.lang.String
getDocUid()
java.util.List<DocumentArchiveMetaInfo.ElementArchiveMetaInfo>
getElementInfos()
java.util.Properties
getVariableData()
boolean
hasAnnotations()
-
-
-
Method Detail
-
getVariableData
java.util.Properties getVariableData()
- Returns:
- Document variable data
-
getElementInfos
java.util.List<DocumentArchiveMetaInfo.ElementArchiveMetaInfo> getElementInfos()
- Returns:
- archive information about the pages of the document
-
getCreateUser
int getCreateUser()
- Returns:
- Document create user
-
hasAnnotations
boolean hasAnnotations()
- Returns:
- whether there is a page with annotated content in the document
-
getDocUid
java.lang.String getDocUid()
- Returns:
- return hdoc of the archived document
-
-