Hi All,
We are using the swagger tool for implementing REST Service.
We need our server to respond with 1xx response , then do some processing
with REST request and then send 200 OK.
The Impl class is something like this:
public Response XXXX ( .. ) throws NotFoundException {
String jsonRespString = "";
...
// Send 1xx response.
....
//Then send 200 OK
return Response.ok().entity(jsonRespString).build();
}
Is it possible to support such a flow in Swagger?
-Sumanta
--
You received this message because you are subscribed to the Google Groups
"Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.