@DispatcherMode

Target: Class annotated with @StageDefinition.

Description: Allows stage execution configuration on the Dispatcher, namely on the authorization and authentication steps.

JavaDoc: Click here

Attributes:

Name Description Data type Required Default value
authenticate Configures the stage execution regarding authentication. Boolean No True
authorize Configures the stage execution regarding authorization. Boolean No True

Example:

@StageDefinition(name = "MockupStage", service = "mockupService")
@DispatcherMode(authenticate=false, authorize=false)
public class MockupStage {
 ...
}

See also:

Back to annotation reference