Package com.bookstore.service.workflow

Examples of com.bookstore.service.workflow.OrderActivity.deleteOrder()


  @Produces({MediaType.APPLICATION_JSON})
  @Consumes({MediaType.APPLICATION_JSON})
  @Path("/{id}")
  public Response deleteOrder(@PathParam("id") String id) {
    OrderActivity orderActivity = new OrderActivity();
    String res = orderActivity.deleteOrder(id);
    if (res.equals("OK")) {
      return Response.status(Status.OK).build();
    }
    return null;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.