|
Annotation Types Summary |
| CookieParam |
Used to map a REST parameter to a cookie on the HTTP request
See the following example:
.. |
| DefaultValue |
Default value for a REST method parameter. |
| DELETE |
Indicates that the annotated method responds to HTTP DELETE requests |
| FormParam |
Used to map a REST method parameter to a form parameter on the HTTP request
See the following example:
.. |
| GET |
Indicates that the annotated method responds to HTTP GET requests |
| HeaderParam |
Used to map a REST method parameter to a header on the HTTP request
See the following example:
.. |
| HttpMethod |
CRUX INTERNAL INTERFACE. |
| Path |
Used to define the path that will be associated to a REST operation, or a class with operations. |
| PathParam |
Used to map a REST method parameter to a path parameter on the HTTP request
See the following example:
.. |
| POST |
Indicates that the annotated method responds to HTTP POST requests
POST operations are used to write data (insert or updates). |
| PUT |
Indicates that the annotated method responds to HTTP PUT requests. |
| QueryParam |
Used to map a REST method parameter to a query parameter on the HTTP request
See the following example:
.. |