Class ProcessStep
- java.lang.Object
-
- fr.gouv.vitam.common.model.processing.Step
-
- fr.gouv.vitam.processing.common.model.ProcessStep
-
public class ProcessStep extends Step
Step Object in process workflow
-
-
Constructor Summary
Constructors Constructor Description ProcessStep(Step step, java.lang.String containerName, java.lang.String workflowId, int position, java.util.concurrent.atomic.AtomicLong elementToProcess, java.util.concurrent.atomic.AtomicLong elementProcessed)
Constructor to initalize a Process Step with a Step objectProcessStep(Step step, java.lang.String id, java.lang.String containerName, java.lang.String workflowId, int position, java.util.concurrent.atomic.AtomicLong elementToProcess, java.util.concurrent.atomic.AtomicLong elementProcessed)
ProcessStep(Step step, java.util.concurrent.atomic.AtomicLong elementToProcess, java.util.concurrent.atomic.AtomicLong elementProcessed)
Constructor to initialize a Process Step with a Step objectProcessStep(Step step, java.util.concurrent.atomic.AtomicLong elementToProcess, java.util.concurrent.atomic.AtomicLong elementProcessed, java.lang.String id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object object)
Considered equal two ProcessStep with the same id, step name and worker group id.java.util.concurrent.atomic.AtomicLong
getElementProcessed()
java.util.concurrent.atomic.AtomicLong
getElementToProcess()
boolean
getLastStep()
StatusCode
getStepStatusCode()
int
hashCode()
boolean
isBlockingKO()
ProcessStep
setElementProcessed(java.util.concurrent.atomic.AtomicLong elementProcessed)
ProcessStep
setElementToProcess(java.util.concurrent.atomic.AtomicLong elementToProcess)
void
setLastStep(boolean lastStep)
ProcessStep
setStepStatusCode(StatusCode stepStatusCode)
java.lang.String
toString()
-
Methods inherited from class fr.gouv.vitam.common.model.processing.Step
defaultLifecycleLog, getActions, getBehavior, getDistribution, getId, getPauseOrCancelAction, getStepName, getStepResponses, getWaitFor, getWorkerGroupId, isBlocking, isFinally, setActions, setBehavior, setDistribution, setId, setPauseOrCancelAction, setStepName, setStepResponses, setWaitFor, setWorkerGroupId
-
-
-
-
Constructor Detail
-
ProcessStep
public ProcessStep(Step step, java.util.concurrent.atomic.AtomicLong elementToProcess, java.util.concurrent.atomic.AtomicLong elementProcessed, java.lang.String id)
-
ProcessStep
public ProcessStep(Step step, java.util.concurrent.atomic.AtomicLong elementToProcess, java.util.concurrent.atomic.AtomicLong elementProcessed)
Constructor to initialize a Process Step with a Step object- Parameters:
step
- the Step objectelementToProcess
- number of element to processelementProcessed
- number of element processed- Throws:
java.lang.IllegalArgumentException
- if the step is null
-
ProcessStep
public ProcessStep(Step step, java.lang.String id, java.lang.String containerName, java.lang.String workflowId, int position, java.util.concurrent.atomic.AtomicLong elementToProcess, java.util.concurrent.atomic.AtomicLong elementProcessed)
-
ProcessStep
public ProcessStep(Step step, java.lang.String containerName, java.lang.String workflowId, int position, java.util.concurrent.atomic.AtomicLong elementToProcess, java.util.concurrent.atomic.AtomicLong elementProcessed)
Constructor to initalize a Process Step with a Step object- Parameters:
step
- the Step objectcontainerName
- the container name concerned by the processworkflowId
- the workflow ID concerned by the processposition
- the position of the stepelementToProcess
- number of element to processelementProcessed
- number of element processed- Throws:
java.lang.IllegalArgumentException
- if the step is null
-
-
Method Detail
-
isBlockingKO
public boolean isBlockingKO()
-
getElementProcessed
public java.util.concurrent.atomic.AtomicLong getElementProcessed()
- Returns:
- the elementProcessed
-
setElementProcessed
public ProcessStep setElementProcessed(java.util.concurrent.atomic.AtomicLong elementProcessed)
- Parameters:
elementProcessed
- the elementProcessed to set- Returns:
- the updated ProcessStep object
-
getElementToProcess
public java.util.concurrent.atomic.AtomicLong getElementToProcess()
- Returns:
- the elementToProcess
-
setElementToProcess
public ProcessStep setElementToProcess(java.util.concurrent.atomic.AtomicLong elementToProcess)
- Parameters:
elementToProcess
- the elementToProcess to set- Returns:
- the updated ProcessStep object
-
getStepStatusCode
public StatusCode getStepStatusCode()
- Returns:
- the stepStatusCode
-
setStepStatusCode
public ProcessStep setStepStatusCode(StatusCode stepStatusCode)
- Parameters:
stepStatusCode
- the stepStatusCode to set- Returns:
- the updated ProcessStep object
-
equals
public boolean equals(java.lang.Object object)
Considered equal two ProcessStep with the same id, step name and worker group id.- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
setLastStep
public void setLastStep(boolean lastStep)
-
getLastStep
public boolean getLastStep()
-
-