Enum LogbookTypeProcess
- java.lang.Object
-
- java.lang.Enum<LogbookTypeProcess>
-
- fr.gouv.vitam.logbook.common.parameters.LogbookTypeProcess
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LogbookTypeProcess>
public enum LogbookTypeProcess extends java.lang.Enum<LogbookTypeProcess>
Logbook Process Type
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARCHIVE_TRANSFER
transfer du SIPAUDIT
Audit type processBULK_UPDATE
Bulk update of archive units.CHECK
Check type processCOMPUTE_INHERITED_RULES
Compute inherited rules processCOMPUTE_INHERITED_RULES_DELETE
Compute inherited rules process deleteDATA_CONSISTENCY_AUDIT
Audit de cohérance de données Mongo/ESDATA_MIGRATION
MigrationDELETE_GOT_VERSIONS
Delete GOT versionsDESTRUCTION
Destruction type processELIMINATION
Elimination processEXPORT_DIP
export du DIPEXPORT_PROBATIVE_VALUE
Evidence probativevalue export.EXTERNAL_LOGBOOK
External uses only.FILINGSCHEME
Filing scheme type process (classification plan)HOLDINGSCHEME
Holding scheme type process (tree)INGEST
Ingest type processINGEST_CLEANUP
Ingest cleanup type processINGEST_TEST
INGEST (Blank test)INTERNAL_OPERATING_OP
MASS_UPDATE
Mass update of archive units.MASTERDATA
Rules Manager processPRESERVATION
Preservation type processRECLASSIFICATION
Reclassification process (attachment/detachment)STORAGE_AGENCIES
Storage Rule type processSTORAGE_BACKUP
Storage Backup type processSTORAGE_LOGBOOK
Storage logbook type processSTORAGE_RULE
Storage Rule type processTRACEABILITY
traceabiliy type processTRANSFER_REPLY
UPDATE
Update process
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LogbookTypeProcess
getLogbookTypeProcess(java.lang.String type)
Get the LogbookTypeProcess matching the given typestatic LogbookTypeProcess
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LogbookTypeProcess[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INGEST
public static final LogbookTypeProcess INGEST
Ingest type process
-
INGEST_CLEANUP
public static final LogbookTypeProcess INGEST_CLEANUP
Ingest cleanup type process
-
AUDIT
public static final LogbookTypeProcess AUDIT
Audit type process
-
DATA_CONSISTENCY_AUDIT
public static final LogbookTypeProcess DATA_CONSISTENCY_AUDIT
Audit de cohérance de données Mongo/ES
-
DESTRUCTION
public static final LogbookTypeProcess DESTRUCTION
Destruction type process
-
PRESERVATION
public static final LogbookTypeProcess PRESERVATION
Preservation type process
-
CHECK
public static final LogbookTypeProcess CHECK
Check type process
-
UPDATE
public static final LogbookTypeProcess UPDATE
Update process
-
MASTERDATA
public static final LogbookTypeProcess MASTERDATA
Rules Manager process
-
TRACEABILITY
public static final LogbookTypeProcess TRACEABILITY
traceabiliy type process
-
INGEST_TEST
public static final LogbookTypeProcess INGEST_TEST
INGEST (Blank test)
-
STORAGE_LOGBOOK
public static final LogbookTypeProcess STORAGE_LOGBOOK
Storage logbook type process
-
STORAGE_RULE
public static final LogbookTypeProcess STORAGE_RULE
Storage Rule type process
-
STORAGE_AGENCIES
public static final LogbookTypeProcess STORAGE_AGENCIES
Storage Rule type process
-
STORAGE_BACKUP
public static final LogbookTypeProcess STORAGE_BACKUP
Storage Backup type process
-
HOLDINGSCHEME
public static final LogbookTypeProcess HOLDINGSCHEME
Holding scheme type process (tree)
-
FILINGSCHEME
public static final LogbookTypeProcess FILINGSCHEME
Filing scheme type process (classification plan)
-
EXPORT_DIP
public static final LogbookTypeProcess EXPORT_DIP
export du DIP
-
ARCHIVE_TRANSFER
public static final LogbookTypeProcess ARCHIVE_TRANSFER
transfer du SIP
-
DATA_MIGRATION
public static final LogbookTypeProcess DATA_MIGRATION
Migration
-
RECLASSIFICATION
public static final LogbookTypeProcess RECLASSIFICATION
Reclassification process (attachment/detachment)
-
MASS_UPDATE
public static final LogbookTypeProcess MASS_UPDATE
Mass update of archive units.
-
BULK_UPDATE
public static final LogbookTypeProcess BULK_UPDATE
Bulk update of archive units.
-
ELIMINATION
public static final LogbookTypeProcess ELIMINATION
Elimination process
-
EXPORT_PROBATIVE_VALUE
public static final LogbookTypeProcess EXPORT_PROBATIVE_VALUE
Evidence probativevalue export.
-
EXTERNAL_LOGBOOK
public static final LogbookTypeProcess EXTERNAL_LOGBOOK
External uses only.
-
COMPUTE_INHERITED_RULES
public static final LogbookTypeProcess COMPUTE_INHERITED_RULES
Compute inherited rules process
-
TRANSFER_REPLY
public static final LogbookTypeProcess TRANSFER_REPLY
-
COMPUTE_INHERITED_RULES_DELETE
public static final LogbookTypeProcess COMPUTE_INHERITED_RULES_DELETE
Compute inherited rules process delete
-
INTERNAL_OPERATING_OP
public static final LogbookTypeProcess INTERNAL_OPERATING_OP
-
DELETE_GOT_VERSIONS
public static final LogbookTypeProcess DELETE_GOT_VERSIONS
Delete GOT versions
-
-
Method Detail
-
values
public static LogbookTypeProcess[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LogbookTypeProcess c : LogbookTypeProcess.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LogbookTypeProcess valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getLogbookTypeProcess
public static LogbookTypeProcess getLogbookTypeProcess(java.lang.String type) throws java.lang.IllegalArgumentException
Get the LogbookTypeProcess matching the given type- Parameters:
type
-- Returns:
- a LogbookTypeProcess
- Throws:
java.lang.IllegalArgumentException
-
-