Uses of Class
org.daisy.pipeline.client.Pipeline2WSResponse

Packages that use Pipeline2WSResponse
org.daisy.pipeline.client   
org.daisy.pipeline.client.models   
 

Uses of Pipeline2WSResponse in org.daisy.pipeline.client
 

Methods in org.daisy.pipeline.client that return Pipeline2WSResponse
static Pipeline2WSResponse Jobs.delete(java.lang.String endpoint, java.lang.String username, java.lang.String secret, java.lang.String id)
          Delete a single job HTTP 204 No Content: Successfully processed the request, no content being returned HTTP 401 Unauthorized: Client was not authorized to perform request.
static Pipeline2WSResponse Scripts.get(java.lang.String endpoint, java.lang.String username, java.lang.String secret)
          Get all scripts HTTP 200 OK: Response body contains XML data HTTP 401 Unauthorized: Client was not authorized to perform request.
static Pipeline2WSResponse Jobs.get(java.lang.String endpoint, java.lang.String username, java.lang.String secret)
          Get all jobs HTTP 200 OK: Response body contains XML data HTTP 401 Unauthorized: Client was not authorized to perform request.
static Pipeline2WSResponse Scripts.get(java.lang.String endpoint, java.lang.String username, java.lang.String secret, java.lang.String id)
          Get a single script HTTP 200 OK: Response body contains XML data HTTP 401 Unauthorized: Client was not authorized to perform request.
static Pipeline2WSResponse Jobs.get(java.lang.String endpoint, java.lang.String username, java.lang.String secret, java.lang.String id, java.lang.Integer fromSequence)
          Get a single job HTTP 200 OK: Response body contains XML data HTTP 401 Unauthorized: Client was not authorized to perform request.
static Pipeline2WSResponse Pipeline2WS.get(java.lang.String endpoint, java.lang.String path, java.lang.String username, java.lang.String secret, java.util.Map<java.lang.String,java.lang.String> parameters)
          Send a GET request.
static Pipeline2WSResponse Jobs.getLog(java.lang.String endpoint, java.lang.String username, java.lang.String secret, java.lang.String id)
          Get the log file for a job HTTP 200 OK: Response body contains plain text data HTTP 401 Unauthorized: Client was not authorized to perform request.
static Pipeline2WSResponse Jobs.getResult(java.lang.String endpoint, java.lang.String username, java.lang.String secret, java.lang.String id)
          Get the result for a job HTTP 200 OK: Response body contains Zip data HTTP 401 Unauthorized: Client was not authorized to perform request.
static Pipeline2WSResponse Jobs.post(java.lang.String endpoint, java.lang.String username, java.lang.String secret, java.lang.String href, java.util.List<Argument> arguments, java.io.File contextZipFile, java.util.Map<java.lang.String,java.lang.String> callbacks)
          Create a job with files HTTP 201 Created: The URI of the new job is found in the HTTP location header HTTP 400 Bad Request: Errors in the parameters such as invalid script name HTTP 401 Unauthorized: Client was not authorized to perform request.
static Pipeline2WSResponse Pipeline2WS.postMultipart(java.lang.String endpoint, java.lang.String path, java.lang.String username, java.lang.String secret, java.util.Map<java.lang.String,java.io.File> parts)
          POST a multipart request.
static Pipeline2WSResponse Pipeline2WS.postXml(java.lang.String endpoint, java.lang.String path, java.lang.String username, java.lang.String secret, org.w3c.dom.Document xml)
          POST an XML document.
 

Uses of Pipeline2WSResponse in org.daisy.pipeline.client.models
 

Methods in org.daisy.pipeline.client.models with parameters of type Pipeline2WSResponse
static java.util.List<Job> Job.getJobs(Pipeline2WSResponse response)
          Parse the list of jobs described by the provided Pipeline2WSResponse.
static java.util.List<Script> Script.getScripts(Pipeline2WSResponse response)
          Parse the list of scripts described by the provided Pipeline2WSResponse.
 

Constructors in org.daisy.pipeline.client.models with parameters of type Pipeline2WSResponse
Job(Pipeline2WSResponse response)
          Parse the job described by the provided Pipeline2WSResponse.
Script(Pipeline2WSResponse response)
          Parse the script described by the provided Pipeline2WSResponse.