Annotation Type WorkflowController


@Retention(RUNTIME)
@Target(TYPE)
@Component
public @interface WorkflowController
Indicates that the annotated class is a stateless "workflow coordinator", meaning a component to which one or more workflows delegate the bulk of their processing. This annotation serves as a specialization of the Spring framework's @Component annotation. Requires the value attribute when annotating, e.g. WorkflowCoordinator("ZBKS.BookWorkflowCoordinator"). The value attribute is used as the bean id when managed by the Spring container
  • Required Element Summary

    Required Elements 
    Modifier and Type Required Element Description
    java.lang.String value  
  • Element Details

    • value

      java.lang.String value