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 WarehousingBaseControllerWebResource exposingWarehousingConsignmentFacadehttp://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 Constructor Description WarehousingOrdersController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidputOrderOnHold(@NotNull java.lang.String code)Request to put order on holdvoidreSource(@NotNull java.lang.String code)Request to re-Source an order-
Methods inherited from class de.hybris.platform.warehousingwebservices.controllers.WarehousingBaseController
createPageable, validate
-
-
-
-
Method Detail
-
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 java.lang.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 java.lang.String code)Request to re-Source an order- Parameters:
code- order's code to be resourced
-
-