You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a JAX-RS resource with the following method
public Response metadata(
@ApiParam(value = "The path of the file, optionally prefixed with a '/'", required = true) @QueryParam("path") FilePathParam pathParam,
@Context HttpHeaders headers,
@Context UriInfo uriInfo,
@Context Request request) {
...
}
where the FilePathParam class takes a single String argument that Jersey automatically uses to construct the FilePathParam class . It would be nice if I could indicate that the Data Type is actually String.class instead of the FilePathParam.class which is shown in the Swagger UI.
The text was updated successfully, but these errors were encountered:
I have a JAX-RS resource with the following method
where the
FilePathParam
class takes a single String argument that Jersey automatically uses to construct theFilePathParam
class . It would be nice if I could indicate that the Data Type is actually String.class instead of the FilePathParam.class which is shown in the Swagger UI.The text was updated successfully, but these errors were encountered: