Class SimpleOrchestrationMember
java.lang.Object
com.broadleafcommerce.orchestration.client.SimpleOrchestrationMember
Descriptive information about a specific
SimpleActivity in the workflow.-
Constructor Summary
ConstructorsConstructorDescriptionSimpleOrchestrationMember(String name, String description, boolean isAdminSelectable, boolean executed, String errorInformation, boolean isError) -
Method Summary
Modifier and TypeMethodDescriptionOptional description for this business task.Any information regarding errors this step may have encountered during execution.getName()A unique name for the activity.booleanWhether the orchestration member (i.e.booleanisError()Whether this orchestration member (i.e.booleanWhether this orchestration member (i.e.voidsetAdminSelectable(boolean isAdminSelectable) Whether the orchestration member (i.e.voidsetDescription(String description) Optional description for this business task.voidsetError(boolean isError) Whether this orchestration member (i.e.voidsetErrorInformation(String errorInformation) Any information regarding errors this step may have encountered during execution.voidsetExecuted(boolean executed) Whether this orchestration member (i.e.voidA unique name for the activity.
-
Constructor Details
-
SimpleOrchestrationMember
public SimpleOrchestrationMember() -
SimpleOrchestrationMember
-
-
Method Details
-
setName
A unique name for the activity. Should match the Spring bean name for the activity bean. -
setDescription
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 forSimpleWorkflow.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
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
A unique name for the activity. Should match the Spring bean name for the activity bean. -
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 forSimpleWorkflow.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
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.
-