return "redirect:/shipping/shipment/list";
}
@RequestMapping(value = "/deliver", method = RequestMethod.POST)
public String receiveShipment(@RequestParam("shipmentId") String shipmentId) {
gate.dispatch(new DeliverShipmentCommand(new AggregateId(shipmentId)));
return "redirect:/shipping/shipment/list";
}