The handleElectronicsFulfillOrderFragment chain is executed when a ElectronicFulfiller receives a FulfillOrderFragment message.
The following sections describe each processor in the pipeline chain.
extractOrderId6
This processor attempts to extract the ID of the order from the OrderId property of the FulfillOrderFragment message.
Transactional Mode | TX_MANDATORY |
Component |
|
Object |
|
Transitions | Return value of 1 executes the |
handleRetrieveOrder2
This processor determines the method by which the Order should be loaded. If the order ID was successfully extracted in the extractOrderId processor, then we move to the loadOrder8 processor. If not, then it checks the Boolean LookUpOrderIdFromOrder property of the OrderFulfiller. If true, we move to the loadSaveOrder2 processor. If false, then it throws an InvalidParameterException, and chain execution stops.
Transactional Mode | TX_MANDATORY |
Component |
|
Object |
|
Transitions | Return value of 1 executes the |
loadSaveOrder2
This processor checks to see if the Order exists in the order repository, using the OrderExists method of OrderManager, and using the ID of the serialized order within the FulfillOrderFragment message as the parameter. If the order exists, the processor loads the order. If it does not, then fulfillment is using a different repository than the order placement system. The processor then saves the order from the message into the repository. In either case, the chain then moves to the processElectronicShippingGroupsChain processor.
loadOrder8
This processor loads the order from the repository. Control then passes to processElectronicShippingGroupsChain.
Transactional Mode | TX_MANDATORY |
Component |
|
Object |
|
Transitions | Return value of 1 executes the |
processElectronicShippingGroupsChain
This processor iterates through the shipping groups contained in the FulfillOrderFragment message, and runs the processElectronicShippingGroup chain for each.
Transactional Mode | TX_MANDATORY |
Component |
|
Object |
|
Transitions | Return value of 1 executes the |
updateOrderRepository8
This processor updates the order in the repository with any changes that may have been made during the execution of this chain.
Transactional Mode | TX_MANDATORY |
Component |
|
Object |
|
Transitions | Return value of 1 executes the |
sendModifyOrderNotification8
This processor sends a ModifyOrderNotification message with the list of modifications performed during the execution of this chain using JMS.
Transactional Mode | TX_MANDATORY |
Component |
|
Object |
|
Transitions | None. This is the last link in the chain and causes the |

