Ejemplo n.º 1
0
  @POST
  @Path("/order")
  @Produces(MediaType.APPLICATION_JSON)
  @Consumes(MediaType.APPLICATION_JSON)
  public synchronized JSONObject addOrder(JSONObject clientOrder) {
    System.out.println("INFO -- Attempting to add order: " + clientOrder);

    return theMan.handleIncomingOrder(clientOrder);
  }