-
Notifications
You must be signed in to change notification settings - Fork 122
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
[1183] - rename Entity annotation to Body #1189
[1183] - rename Entity annotation to Body #1189
Conversation
3daac4e
to
8bb0c2a
Compare
1229383
to
4195c75
Compare
jaxrs-spec/src/main/asciidoc/chapters/asynchronous_processing/_server_api.adoc
Outdated
Show resolved
Hide resolved
4195c75
to
9b536c9
Compare
Signed-off-by: Adam Anderson <atanderson9383@gmail.com>
9b536c9
to
27ae97a
Compare
@@ -55,7 +55,8 @@ parameters. See <<consuming_multipart_formdata>> for more details. | |||
|
|||
The value of a parameter not annotated with `@FormParam` or any of the | |||
annotations listed in in <<resource_field>>, called the entity | |||
parameter, is mapped from the request entity body. Conversion between an | |||
parameter, is mapped from the request entity body. This parameter MUST | |||
be annotated with the `@Body` annotation. Conversion between an |
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.
@spericas I moved the @Body
requirement here.
forks a (non-request) thread to execute a long running operation and returns | ||
immediately. Once the execution of the long running operation is complete, | ||
the connection is resumed and the response returned by calling `resume` on | ||
the injected instance of `AsyncResponse`. |
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.
I am leaving these changed (minus the @Body
section) since I think I've made it easier to read. I can remove this if you want.
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.
lgtm
Fixes #1183
Rename the
@Entity
annotation to@Body
and update references.