Package pl.com.bottega.ecommerce.shipping.application.commands

Examples of pl.com.bottega.ecommerce.shipping.application.commands.DeliverShipmentCommand


        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";
    }
View Full Code Here

TOP

Related Classes of pl.com.bottega.ecommerce.shipping.application.commands.DeliverShipmentCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.