Class WarehousingOrdersController
java.lang.Object
de.hybris.platform.warehousingwebservices.controllers.WarehousingBaseController
de.hybris.platform.warehousingwebservices.controllers.order.WarehousingOrdersController
@Controller
@RequestMapping("/orders")
public class WarehousingOrdersController
extends WarehousingBaseController
WebResource exposing
WarehousingConsignmentFacade
http://host:port/warehousingwebservices/orders-
Field Summary
Fields inherited from class de.hybris.platform.warehousingwebservices.controllers.WarehousingBaseController
dataMapper, DEFAULT_CURRENT_PAGE, DEFAULT_FIELD_SET, DEFAULT_PAGE_SIZE, DEFAULT_SORT, WAREHOUSE_ADMINISTRATOR_GROUP, WAREHOUSE_AGENT_GROUP, WAREHOUSE_MANAGER_GROUP -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidputOrderOnHold(@NotNull String code) Request to put order on holdvoidRequest to re-Source an orderMethods inherited from class de.hybris.platform.warehousingwebservices.controllers.WarehousingBaseController
createPageable, validate
-
Constructor Details
-
WarehousingOrdersController
public WarehousingOrdersController()
-
-
Method Details
-
putOrderOnHold
@Secured({"ROLE_WAREHOUSEAGENTGROUP","ROLE_WAREHOUSEMANAGERGROUP","ROLE_WAREHOUSEADMINISTRATORGROUP"}) @RequestMapping(value="/{code}/on-hold", method=POST, produces={"application/json","application/xml"}, consumes={"application/json","application/xml"}) @ResponseStatus(OK) public void putOrderOnHold(@PathVariable @NotNull @NotNull String code) Request to put order on hold- Parameters:
code- order's code to be put on hold
-
reSource
@Secured({"ROLE_WAREHOUSEAGENTGROUP","ROLE_WAREHOUSEMANAGERGROUP","ROLE_WAREHOUSEADMINISTRATORGROUP"}) @RequestMapping(value="/{code}/re-source", method=POST, produces={"application/json","application/xml"}, consumes={"application/json","application/xml"}) @ResponseStatus(OK) public void reSource(@PathVariable @NotNull @NotNull String code) Request to re-Source an order- Parameters:
code- order's code to be resourced
-