public class StepDetail
extends java.lang.Object
implements java.io.Serializable
Combines the execution state and configuration of a step.
| コンストラクタと説明 |
|---|
StepDetail()
Default constructor for a new StepDetail object.
|
StepDetail(StepConfig stepConfig,
StepExecutionStatusDetail executionStatusDetail)
Constructs a new StepDetail object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
StepExecutionStatusDetail |
getExecutionStatusDetail()
The description of the step status.
|
StepConfig |
getStepConfig()
The step configuration.
|
int |
hashCode() |
void |
setExecutionStatusDetail(StepExecutionStatusDetail executionStatusDetail)
The description of the step status.
|
void |
setStepConfig(StepConfig stepConfig)
The step configuration.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
StepDetail |
withExecutionStatusDetail(StepExecutionStatusDetail executionStatusDetail)
The description of the step status.
|
StepDetail |
withStepConfig(StepConfig stepConfig)
The step configuration.
|
public StepDetail()
public StepDetail(StepConfig stepConfig, StepExecutionStatusDetail executionStatusDetail)
stepConfig - The step configuration.executionStatusDetail - The description of the step status.public StepConfig getStepConfig()
public void setStepConfig(StepConfig stepConfig)
stepConfig - The step configuration.public StepDetail withStepConfig(StepConfig stepConfig)
Returns a reference to this object so that method calls can be chained together.
stepConfig - The step configuration.public StepExecutionStatusDetail getExecutionStatusDetail()
public void setExecutionStatusDetail(StepExecutionStatusDetail executionStatusDetail)
executionStatusDetail - The description of the step status.public StepDetail withExecutionStatusDetail(StepExecutionStatusDetail executionStatusDetail)
Returns a reference to this object so that method calls can be chained together.
executionStatusDetail - The description of the step status.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object