| ComponentValue |
Annotation that indicates method parameter should be bound to some component
value of the HTTP server.
|
| HeaderValue |
Annotation that indicates method parameter should be bound to the HTTP header
with the specified name.
|
| HttpConnect |
Annotation for mapping HTTP CONNECT requests onto specific handler
methods.
|
| HttpDelete |
Annotation for mapping HTTP DELETE requests onto specific handler
methods.
|
| HttpGet |
Annotation for mapping HTTP GET requests onto specific handler
methods.
|
| HttpHead |
Annotation for mapping HTTP HEAD requests onto specific handler
methods.
|
| HttpOptions |
Annotation for mapping HTTP OPTIONS requests onto specific handler
methods.
|
| HttpPatch |
Annotation for mapping HTTP PATCH requests onto specific handler
methods.
|
| HttpPath |
Annotation for path of HTTP services.
|
| HttpPost |
Annotation for mapping HTTP POST requests onto specific handler
methods.
|
| HttpPut |
Annotation for mapping HTTP PUT requests onto specific handler
methods.
|
| HttpRoute |
Annotation for HTTP route.
|
| HttpTrace |
Annotation for mapping HTTP TRACE requests onto specific handler
methods.
|
| JsonBody |
Annotation that indicates a method return value or a method parameter should
be bound to the HTTP body as type "application/json".
|
| PathVar |
Annotation that indicates a parameter variable should be bound to an HTTP
path variable.
|
| PropertyValue |
Annotation that indicates method parameter should be bound to some property
value of the request context.
|
| QueryVar |
Annotation that indicates a parameter variable should be bound to an HTTP
query parameter.
|
| RemoteAddr |
Annotation that indicates method parameter should be bound to the remote
address (client IP).
|
| StringBody |
Annotation that indicates a method return value or a method parameter should
be bound to the HTTP body as type "text/plain".
|