Skip to content
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

Define how @FormParam values are obtained #695

Merged
merged 1 commit into from
Nov 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions jaxrs-api/src/main/java/javax/ws/rs/FormParam.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@
* </p>
*
* <p>
* If this annotation is used to bind form parameters, a JAX-RS implementation MUST use the entity provider API
* to create a {@link javax.ws.rs.core.Form} and derive the values from this instance. If there is at least one
* {@link FormParam} for a resource method, JAX-RS implementations MUST support a {@link javax.ws.rs.core.Form}
* entity parameter for the same method. Support for other entity parameter types is OPTIONAL.
* </p>
*
* <p>
* Note that, whilst the annotation target permits use on fields and methods, this annotation is only required to be
* supported on resource method parameters.
* </p>
Expand Down