Class SimpleOrchestrationMember

java.lang.Object
com.broadleafcommerce.orchestration.client.SimpleOrchestrationMember

public class SimpleOrchestrationMember extends Object
Descriptive information about a specific SimpleActivity in the workflow.
  • Constructor Details

    • SimpleOrchestrationMember

      public SimpleOrchestrationMember()
    • SimpleOrchestrationMember

      public SimpleOrchestrationMember(String name, String description, boolean isAdminSelectable, boolean executed, String errorInformation, boolean isError)
  • Method Details

    • setName

      public void setName(String name)
      A unique name for the activity. Should match the Spring bean name for the activity bean.
    • setDescription

      public void setDescription(String description)
      Optional description for this business task.
    • setAdminSelectable

      public void setAdminSelectable(boolean isAdminSelectable)
      Whether the orchestration member (i.e. activity) is allowed to be targeted in a UI for SimpleWorkflow.goToStep(String) execution.
    • setExecuted

      public void setExecuted(boolean executed)
      Whether this orchestration member (i.e. activity) has already been executed at the time the orchestration map is rendered.
    • setErrorInformation

      public void setErrorInformation(String errorInformation)
      Any information regarding errors this step may have encountered during execution.
    • setError

      public void setError(boolean isError)
      Whether this orchestration member (i.e. activity) is currently in an error state.
    • getName

      public String getName()
      A unique name for the activity. Should match the Spring bean name for the activity bean.
    • getDescription

      public String getDescription()
      Optional description for this business task.
    • isAdminSelectable

      public boolean isAdminSelectable()
      Whether the orchestration member (i.e. activity) is allowed to be targeted in a UI for SimpleWorkflow.goToStep(String) execution.
    • isExecuted

      public boolean isExecuted()
      Whether this orchestration member (i.e. activity) has already been executed at the time the orchestration map is rendered.
    • getErrorInformation

      public String getErrorInformation()
      Any information regarding errors this step may have encountered during execution.
    • isError

      public boolean isError()
      Whether this orchestration member (i.e. activity) is currently in an error state.