@Retention(value=RUNTIME) @Target(value=METHOD) public @interface ResourceMethodSignature
Modifier and Type | Optional Element and Description |
---|---|
javax.ws.rs.CookieParam[] |
cookieParams
The set of cookie parameters applicable to this resource method.
|
javax.ws.rs.FormParam[] |
formParams
The set of form parameters applicable to this resource method.
|
javax.ws.rs.HeaderParam[] |
headerParams
The set of header parameters applicable to this resource method.
|
Class<?> |
input
The input type for this resource method (i.e.
|
javax.ws.rs.MatrixParam[] |
matrixParams
The set of matrix parameters applicable to this resource method.
|
Class<?> |
output
The output type for this resource method (what would normally be the JAX-RS return type).
|
javax.ws.rs.PathParam[] |
pathParams
The set of path parameters applicable to this resource method.
|
javax.ws.rs.QueryParam[] |
queryParams
The set of query parameters applicable to this resource method.
|
public abstract Class<?> input
public abstract Class<?> output
public abstract javax.ws.rs.MatrixParam[] matrixParams
public abstract javax.ws.rs.QueryParam[] queryParams
public abstract javax.ws.rs.PathParam[] pathParams
public abstract javax.ws.rs.CookieParam[] cookieParams
Copyright © 2006-2016–2017. All rights reserved.