Package com.logicaldoc.impex
Class Archive
java.lang.Object
com.logicaldoc.core.PersistentObject
com.logicaldoc.impex.Archive
- All Implemented Interfaces:
Serializable
This class represents archives.
Each archive contains one or more archived documents.
Mode:
Each archive contains one or more archived documents.
Mode:
- MODE_IMPORT: the archive for documents import
- MODE_EXPORT: the archive for documents export
- For Import Archive:
- READY_TO_IMPORT: the initial status, the archive is ready to be imported
- CLOSED: the import task is started, so the archive is read-only
- FINALIZED: the archive import task is completed
- For Export Archive:
- OPENED: the default status
- CLOSED: when the archive is ready to be build
- FINALIZED: the archive is completed
- READYTOSIGN: the 'storage' archive is ready to be marked temporally
- TYPE_DEFAULT: the default status. It will be not signed.
- TYPE_STORAGE: When it is ready to be build, it will signed and marked temporally
- Since:
- 4.5
- Author:
- Matteo Caruso - LogicalDOC
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic int
On existing CustomID import as new documentstatic int
On existing CustomID import as new major versionstatic int
On existing CustomID import as new minor versionstatic int
On existing CustomID skipstatic int
Mode to mark the archive as exportstatic int
Mode to mark the archive as importstatic int
Status of the export archive when it is closed and you cannot put more files in itstatic int
The archive is set to error status if have occurred errors in the import/export operations.static int
Status of the export archive has been completely builtstatic int
Status of the export archive when it is open and you can put more files in itstatic int
Status of the export archive when it is ready to be importedstatic int
Status of the export archive is ready to be signedstatic int
The archive's default typeFields inherited from class com.logicaldoc.core.PersistentObject
DELETED_CODE_DEFAULT, DELETED_CODE_STRONG
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
addEntry
(com.logicaldoc.core.document.Version newVersion) Adds a new entryThe archive closer idThe archive closer nameThe archive's closure dateThe archive's creation datelong
The archive creator idThe archive creator nameThe archive descriptionSet<com.logicaldoc.core.document.Version>
com.logicaldoc.core.document.Version
getEntry
(long versionId) Long[]
int
int
int
getMode()
getName()
The archive name.long
getSize()
Archive dimension in bytes, that is the sum of sizes of all document plus the size of all metadata filesint
The archive statusint
getType()
The archive typevoid
setCloserId
(Long closerId) void
setCloserName
(String closerName) void
setClosure
(Date closure) void
setCreation
(Date creation) void
setCreatorId
(long creatorId) void
setCreatorName
(String creatorName) void
setDescription
(String description) void
setEntries
(Set<com.logicaldoc.core.document.Version> entries) void
setImportCustomId
(int importCustomId) void
setImportTemplate
(int importTemplate) void
setMode
(int mode) void
void
setSize
(long size) void
setStatus
(int status) void
setType
(int type) Methods inherited from class com.logicaldoc.core.PersistentObject
equals, getDeleted, getId, getLastModified, getRecordVersion, getTenantId, hashCode, setDeleted, setId, setLastModified, setRecordVersion, setTenantId, toString
-
Field Details
-
STATUS_OPENED
public static int STATUS_OPENEDStatus of the export archive when it is open and you can put more files in it -
STATUS_CLOSED
public static int STATUS_CLOSEDStatus of the export archive when it is closed and you cannot put more files in it -
STATUS_FINALIZED
public static int STATUS_FINALIZEDStatus of the export archive has been completely built -
STATUS_READYTOSIGN
public static int STATUS_READYTOSIGNStatus of the export archive is ready to be signed -
STATUS_READY_TO_IMPORT
public static int STATUS_READY_TO_IMPORTStatus of the export archive when it is ready to be imported -
STATUS_ERROR
public static int STATUS_ERRORThe archive is set to error status if have occurred errors in the import/export operations. -
TYPE_DEFAULT
public static int TYPE_DEFAULTThe archive's default type -
MODE_IMPORT
public static int MODE_IMPORTMode to mark the archive as import -
MODE_EXPORT
public static int MODE_EXPORTMode to mark the archive as export -
CUSTOMID_NOT_IMPORT
public static int CUSTOMID_NOT_IMPORTOn existing CustomID skip -
CUSTOMID_IMPORT_AND_NEW_RELEASE
public static int CUSTOMID_IMPORT_AND_NEW_RELEASEOn existing CustomID import as new major version -
CUSTOMID_IMPORT_AND_NEW_SUBVERSION
public static int CUSTOMID_IMPORT_AND_NEW_SUBVERSIONOn existing CustomID import as new minor version -
CUSTOMID_IMPORT_AND_NEW_DOCUMENT
public static int CUSTOMID_IMPORT_AND_NEW_DOCUMENTOn existing CustomID import as new document
-
-
Constructor Details
-
Archive
public Archive()
-
-
Method Details
-
getName
The archive name. Also alternative identifier- Returns:
- the name of the archive
-
setName
-
getDescription
The archive description- Returns:
- the description
-
setDescription
-
getCreation
The archive's creation date- Returns:
- the creation date
-
setCreation
-
getStatus
public int getStatus()The archive status- Returns:
- the status
- See Also:
-
setStatus
public void setStatus(int status) -
getEntryIds
-
getEntry
public com.logicaldoc.core.document.Version getEntry(long versionId) -
getEntries
-
setEntries
-
getSize
public long getSize()Archive dimension in bytes, that is the sum of sizes of all document plus the size of all metadata files- Returns:
- the total size of the archive expressed in bytes
-
setSize
public void setSize(long size) -
addEntry
public boolean addEntry(com.logicaldoc.core.document.Version newVersion) Adds a new entry- Parameters:
newVersion
- The version to be added- Returns:
- true if the version was truly added
-
getType
public int getType()The archive type- Returns:
- the type
- See Also:
-
setType
public void setType(int type) -
getCreatorId
public long getCreatorId()The archive creator id- Returns:
- identifier of the creator user
-
setCreatorId
public void setCreatorId(long creatorId) -
getCreatorName
The archive creator name- Returns:
- name of the creator user
-
setCreatorName
-
getCloserId
The archive closer id- Returns:
- identifier of the user that closed the archive
-
setCloserId
-
getCloserName
The archive closer name- Returns:
- name of the user that closed the archive
-
setCloserName
-
getClosure
The archive's closure date- Returns:
- the closure date
-
setClosure
-
getMode
public int getMode() -
setMode
public void setMode(int mode) -
getImportTemplate
public int getImportTemplate() -
setImportTemplate
public void setImportTemplate(int importTemplate) -
getImportCustomId
public int getImportCustomId() -
setImportCustomId
public void setImportCustomId(int importCustomId)
-