@InjectParameterErrors

Target: Attribute of a POJO annotated with @StageDefinition.

Description: Injects the parameter error report on an object. These errors can be later processed by the stage.

Remarks: The attribute must be of type ParameterErrors.

JavaDoc: Click here

Attributes: N/A

Example:

public class aStage {
    
    @InjectParameterErrors
    ParameterErrors errors;
    
 ...    
}

See also:

Back to annotation reference