@Context

Target: Attribute of a POJO annotated with @StageDefinition.

Description: This annotation is used to inject the execution context on a stage.

Remarks: The attribute type must be IDIFContext.

JavaDoc: Click here

Attributes: N/A

Example:

@StageDefinition("theStageID", service="aStage", name="This an example of a stage")
public class aStage {

    @Context
    IDIFContext ctx;
 
 ...       
}

See also:

Back to annotation reference