We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have set the following on a controller method
@ApiMethod( path = "/{id}/customer/{answerId}", verb = ApiVerb.PUT, description = "Saves a customer object", consumes = {MediaType.APPLICATION_JSON_VALUE}, responsestatuscode = "204" )
However the jsondoc ui displays the responsestatuscode as 200.
The text was updated successfully, but these errors were encountered:
Return type on method signature is ResponseEntity<Object>
ResponseEntity<Object>
This is when returning a no content
return new ResponseEntity<Object>(HttpStatus.NO_CONTENT);
Sorry, something went wrong.
41a892e
fabiomaffioletti
No branches or pull requests
I have set the following on a controller method
However the jsondoc ui displays the responsestatuscode as 200.
The text was updated successfully, but these errors were encountered: