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.boolean
Whether the orchestration member (i.e.boolean
isError()
Whether this orchestration member (i.e.boolean
Whether this orchestration member (i.e.void
setAdminSelectable
(boolean isAdminSelectable) Whether the orchestration member (i.e.void
setDescription
(String description) Optional description for this business task.void
setError
(boolean isError) Whether this orchestration member (i.e.void
setErrorInformation
(String errorInformation) Any information regarding errors this step may have encountered during execution.void
setExecuted
(boolean executed) Whether this orchestration member (i.e.void
A 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.
-