Interface DocumentArchiveMetaInfo
-
- All Known Implementing Classes:
ClassicConnectorDocumentArchiveMetaInfo,MultipageTiffDocumentArchiveMetaInfo
public interface DocumentArchiveMetaInfoHolds the meta information about a document that is stored in the archive as opposed toDocumentDatabaseMetaInfothat holds meta information obtained from the database.- Author:
- jsc
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceDocumentArchiveMetaInfo.ElementArchiveMetaInfoHolds 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 intgetCreateUser()java.lang.StringgetDocUid()java.util.List<DocumentArchiveMetaInfo.ElementArchiveMetaInfo>getElementInfos()java.util.PropertiesgetVariableData()booleanhasAnnotations()
-
-
-
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
-
-