Uses of Class
org.daisy.pipeline.client.models.script.Argument

Packages that use Argument
org.daisy.pipeline.client   
org.daisy.pipeline.client.models   
org.daisy.pipeline.client.models.script   
org.daisy.pipeline.client.models.script.arguments   
 

Uses of Argument in org.daisy.pipeline.client
 

Method parameters in org.daisy.pipeline.client with type arguments of type Argument
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.
 

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

Fields in org.daisy.pipeline.client.models with type parameters of type Argument
 java.util.List<Argument> Script.arguments
           
 

Uses of Argument in org.daisy.pipeline.client.models.script
 

Constructors in org.daisy.pipeline.client.models.script with parameters of type Argument
Argument(Argument arg)
           
 

Uses of Argument in org.daisy.pipeline.client.models.script.arguments
 

Subclasses of Argument in org.daisy.pipeline.client.models.script.arguments
 class ArgBoolean
          An argument of type "boolean"
 class ArgFile
          An argument of type "anyFileURI"
 class ArgFiles
          An argument of type "anyFileURI" and sequence="true"
 class ArgParameters
          An argument of type "parameters"
 class ArgString
          An argument of type "string"
 class ArgStrings
          An argument of type "string" and sequence="true"
 

Methods in org.daisy.pipeline.client.models.script.arguments that return Argument
 Argument ArgParameters.put(java.lang.String name, java.lang.String value)
          For chaining
 

Constructors in org.daisy.pipeline.client.models.script.arguments with parameters of type Argument
ArgBoolean(Argument argument, boolean value)
           
ArgFile(Argument arg, java.lang.String href)
           
ArgFiles(Argument arg)
           
ArgParameters(Argument arg)
           
ArgString(Argument arg, java.lang.String value)
           
ArgStrings(Argument arg)