Uses of Class
nzilbb.labbcat.server.api.RequestParameters
-
Packages that use RequestParameters Package Description nzilbb.labbcat.server.api /api/… : API endpoints providing an HTTP-based API for access to transcripts, annotations, media, and functions that manipulate them.nzilbb.labbcat.server.api.admin /api/admin/… : API endpoints for users with 'admin' privileges.nzilbb.labbcat.server.api.annotation /api/annotation/… : API endpoints providing annotation data.nzilbb.labbcat.server.api.edit.transcript /api/edit/transcript/… : API endpoints associated with uploading transcripts.nzilbb.labbcat.server.api.results /api/results/… : API endpoints related to search result sets.nzilbb.labbcat.server.api.serialize /api/serialize/… : API endpoints related to serialization of annotation graphs/fragments. -
-
Uses of RequestParameters in nzilbb.labbcat.server.api
Methods in nzilbb.labbcat.server.api with parameters of type RequestParameters Modifier and Type Method Description void
Attributes. get(RequestParameters parameters, OutputStream out, Consumer<String> fileName, Consumer<Integer> httpStatus)
The GET method for the servlet.void
Files. get(RequestParameters parameters, OutputStream out, Consumer<String> contentType, Consumer<String> fileName, Consumer<Integer> httpStatus)
The GET method for the servlet.void
Results. get(RequestParameters parameters, UnaryOperator<String> requestHeaders, OutputStream out, Consumer<String> contentTypeConsumer, Consumer<String> fileName, Consumer<Integer> httpStatus)
The GET method for the servlet.javax.json.JsonObject
Search. get(RequestParameters parameters, Consumer<Integer> httpStatus)
The GET method for the servlet.javax.json.JsonObject
Store. get(String url, String method, String pathInfo, String queryString, RequestParameters parameters, InputStream requestBody, Consumer<Integer> httpStatus, Consumer<String> redirectUrl)
GET handler lists all rows.void
TableServletBase. get(String pathInfo, RequestParameters parameters, UnaryOperator<String> requestHeaders, OutputStream out, Consumer<String> contentTypeConsumer, Consumer<String> fileName, Consumer<Integer> httpStatus)
GET handler lists all rows.void
Agreement. post(String pathInfo, Function<String,File> realPath, RequestParameters parameters, OutputStream out, Consumer<String> contentType, Consumer<String> contentEncoding, Consumer<Integer> httpStatus)
POST handler: for saving images and other assets.void
Doc. post(String pathInfo, Function<String,File> realPath, RequestParameters parameters, OutputStream out, Consumer<String> contentType, Consumer<String> contentEncoding, Consumer<Integer> httpStatus)
POST handler: for saving images and other assets.javax.json.JsonObject
Praat. post(RequestParameters parameters, Consumer<String> fileName, Consumer<Integer> httpStatus)
The POST method for the servlet.javax.json.JsonObject
Utterances. post(RequestParameters parameters, Consumer<String> fileName, Consumer<Integer> httpStatus, Consumer<String> redirectUrl)
The POST method for the servlet.void
Doc. put(String pathInfo, Function<String,File> realPath, RequestParameters parameters, InputStream requestBody, OutputStream out, Consumer<String> contentType, Consumer<String> contentEncoding, Consumer<Integer> httpStatus)
PUT handler: Adds or updates an HTML document, or if the "move" parameter is specified, the document's entry is moved in the index (in which case the HTML document itself is not updated). -
Uses of RequestParameters in nzilbb.labbcat.server.api.admin
Methods in nzilbb.labbcat.server.api.admin with parameters of type RequestParameters Modifier and Type Method Description javax.json.JsonObject
Annotators. post(RequestParameters parameters, Consumer<Integer> httpStatus, File annotatorDir)
POST handler - receive an uploaded file or an installation confirmation. -
Uses of RequestParameters in nzilbb.labbcat.server.api.annotation
Methods in nzilbb.labbcat.server.api.annotation with parameters of type RequestParameters Modifier and Type Method Description void
Data. post(RequestParameters parameters, OutputStream out, Consumer<String> contentType, Consumer<String> fileName, Consumer<Integer> httpStatus)
The GET or POST method for the servlet. -
Uses of RequestParameters in nzilbb.labbcat.server.api.edit.transcript
Methods in nzilbb.labbcat.server.api.edit.transcript with parameters of type RequestParameters Modifier and Type Method Description javax.json.JsonObject
Upload. post(RequestParameters requestParameters, Consumer<Integer> httpStatus)
The POST method for the servlet.javax.json.JsonObject
Upload. put(String pathInfo, RequestParameters requestParameters, Consumer<Integer> httpStatus, Function<nzilbb.ag.Graph,String> layerGenerator)
The PUT method for the servlet. -
Uses of RequestParameters in nzilbb.labbcat.server.api.results
Methods in nzilbb.labbcat.server.api.results with parameters of type RequestParameters Modifier and Type Method Description void
Dictionary. get(RequestParameters parameters, OutputStream out, Consumer<String> fileName, Consumer<Integer> httpStatus)
The GET method for the servlet. -
Uses of RequestParameters in nzilbb.labbcat.server.api.serialize
Methods in nzilbb.labbcat.server.api.serialize with parameters of type RequestParameters Modifier and Type Method Description void
Fragments. get(RequestParameters parameters, OutputStream out, Consumer<String> contentType, Consumer<String> fileName, Consumer<Integer> httpStatus)
The GET method for the servlet - this expects an array of graph ids, start times and end times, a list of layerIds in include, and a mimetype.void
Graphs. get(RequestParameters parameters, OutputStream out, Consumer<String> contentType, Consumer<String> fileName, Consumer<Integer> httpStatus)
The GET method for the servlet.
-