Enum Class WorkerParameterName
- All Implemented Interfaces:
Serializable
,Comparable<WorkerParameterName>
,Constable
Enum with all possible worker parameters
Use to set parameter value and to check emptiness nullity
Use to set parameter value and to check emptiness nullity
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionthe array of the different audit actions there are three types of action: "check existence" , "check integrity", "correction"Type of the audit to be processedName of the container to be uploadedCurrent name of the step to be processedEnd operation datehash of rootIngest operation id to clean upMax event count to select during a single logbook lifecycle traceability workflow.Temporization delay (in seconds) for recent logbook lifecycle eventsRequest to be executed by the logbook moduleThe LogbookTypeProcess value used in logbookOperationRequest to be executed by the metadata module (not used for now, except in test classes)Boolean that indicate for Export DIP workflow if the access to an object must be (or not) loggedId of the object to be processed (not used, except in test classes)Name/metadata of the object to be processedList Name/metadata of the object to be processedName/path of the object to be processedList Name/path of the object to be processedPrevious name of the step processedUnique id (GUID) of the workflow to be executedRequest identifier.Start operation dateUnique id of a step.Url of metadata resourcesUrl of workspace resourcesId of the worker (GUID) (not used for now, except in test classes)Workflow identifier (used also as eventType)If Current Workflow status is greater or equal ko, contains the status -
Method Summary
Modifier and TypeMethodDescriptiongetEnums()
static WorkerParameterName
Returns the enum constant of this class with the specified name.static WorkerParameterName[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
urlMetadata
Url of metadata resources -
urlWorkspace
Url of workspace resources -
processId
Unique id (GUID) of the workflow to be executed -
stepUniqId
Unique id of a step. The pattern of the id is : {CONTAINER_NAME}_{WORKFLOW_ID}_{STEP_RANK_IN_THE_WORKFLOW}_{STEP_NAME} -
containerName
Name of the container to be uploaded -
objectName
Name/path of the object to be processed -
objectMetadata
Name/metadata of the object to be processed -
objectNameList
List Name/path of the object to be processed -
objectMetadataList
List Name/metadata of the object to be processed -
objectId
Id of the object to be processed (not used, except in test classes) -
auditType
Type of the audit to be processed -
workerGUID
Id of the worker (GUID) (not used for now, except in test classes) -
metadataRequest
Request to be executed by the metadata module (not used for now, except in test classes) -
currentStep
Current name of the step to be processed -
previousStep
Previous name of the step processed -
workflowStatusKo
If Current Workflow status is greater or equal ko, contains the status -
logBookTypeProcess
The LogbookTypeProcess value used in logbookOperation -
logbookRequest
Request to be executed by the logbook module -
startDate
Start operation date -
endDate
End operation date -
hashRoot
hash of root -
auditActions
the array of the different audit actions there are three types of action: "check existence" , "check integrity", "correction" -
requestId
Request identifier. -
lifecycleTraceabilityTemporizationDelayInSeconds
Temporization delay (in seconds) for recent logbook lifecycle events -
lifecycleTraceabilityMaxEntries
Max event count to select during a single logbook lifecycle traceability workflow. -
mustLogAccessOnObject
Boolean that indicate for Export DIP workflow if the access to an object must be (or not) logged -
workflowIdentifier
Workflow identifier (used also as eventType) -
ingestOperationIdToCleanup
Ingest operation id to clean up
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getEnums
-