Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmmartins committed Dec 19, 2017
1 parent 968f8e0 commit 83e227e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.Consumes;
import javax.ws.rs.core.Response;

import com.integration.camel.module.to.SimpleServiceOrder;
Expand All @@ -26,6 +27,7 @@ public interface SimpleServiceOrderService {

@POST
@Path("/so/")
@Consumes("application/json")
public Response createNewServiceOrder(SimpleServiceOrder serviceOrder);

}

0 comments on commit 83e227e

Please sign in to comment.