-
Notifications
You must be signed in to change notification settings - Fork 6k
[Jaxrs-cxf] add ApiResponse/s to operation #4718 #4920
New issue
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
Conversation
| cliOptions.add(new CliOption("title", "a title describing the application")); | ||
|
|
||
| cliOptions.add(CliOption.newBoolean(USE_BEANVALIDATION, "Use BeanValidation API annotations")); | ||
| cliOptions.add(CliOption.newBoolean(USE_BEANVALIDATION, "Use BeanValidation API annotations")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jfiala This line is not aligned properly (missing 2 spaces)
| if (additionalProperties.containsKey(USE_BEANVALIDATION)) { | ||
| this.setUseBeanValidation(convertPropertyToBoolean(USE_BEANVALIDATION)); | ||
| } | ||
| if (additionalProperties.containsKey(USE_BEANVALIDATION)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alignment issue.
| public void addPetTest() { | ||
| Pet body = null; | ||
| //api.addPet(body); | ||
| //api.addPet(body); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like missing a space and I don't think it's caused by the change in this PR. Still it would be nice if you can fix it in this PR.
|
@wing328 fixed alignment issues from your review & replaced tabs. |
|
@jfiala thanks for the update. PR merged into master. |
…api#4920) * add ApiResponse/s to operation swagger-api#4718 * use spaces instead of tabs swagger-api#4718 * fix alignment issues swagger-api#4920 * fix alignment issues swagger-api#4920 * replace tabs with spaces swagger-api#4920 * updated samples swagger-api#4920
PR checklist
./bin/to update Petstore sample so that CIs can verify the change. (For instance, only need to run./bin/{LANG}-petstore.shand./bin/security/{LANG}-petstore.shif updating the {LANG} (e.g. php, ruby, python, etc) code generator or {LANG} client's mustache templates)2.3.0branch for breaking (non-backward compatible) changes.Description of the PR
Implemented #4718 for CXF.