workflows-and-activities [Conditional Activity Execution]
Posted: Thu Sep 04, 2014 7:15 am
This question is related to the tutorial at http://www.broadleafcommerce.com/docs/c ... activities - The section Conditional Activity Execution says:
Does the above mean something which the code snippet (I created) suggests below: (if not, please explain)
.........perhaps a single large workflow could be declared for multiple configurations of a ProcessContext.
Does the above mean something which the code snippet (I created) suggests below: (if not, please explain)
Code: Select all
<bean id="blCheckoutWorkflow" class="org.broadleafcommerce.core.workflow.SequenceProcessor">
<property name="processContextFactory">
<list>
<bean class="org.broadleafcommerce.core.checkout.service.workflow.CheckoutProcessContextFactory"/>
<bean class="org.broadleafcommerce.core.checkout.service.workflow.SomeOtherProcessContextFactory"/>
<list>
</property>
..........
</bean>