-
public interface DockerSpec
-
-
Method Summary
Modifier and Type Method Description abstract Unitoption(String value)abstract UnitignoreExitCodes()abstract StringgetCommand()abstract List<String>getArgs()abstract StringgetFullCommand()abstract List<String>getOptions()abstract List<Int>getExitCodes()abstract InputStreamgetInput()abstract OutputStreamgetOutput()abstract OutputStreamgetErrors()abstract UnitsetCommand(String command)abstract UnitsetOptions(List<String> options)abstract UnitsetExitCodes(List<Int> exitCodes)abstract UnitsetInput(InputStream input)abstract UnitsetOutput(OutputStream output)abstract UnitsetErrors(OutputStream errors)-
-
Method Detail
-
ignoreExitCodes
abstract Unit ignoreExitCodes()
-
getCommand
abstract String getCommand()
-
getFullCommand
abstract String getFullCommand()
-
getOptions
abstract List<String> getOptions()
-
getExitCodes
abstract List<Int> getExitCodes()
-
getInput
abstract InputStream getInput()
-
getOutput
abstract OutputStream getOutput()
-
getErrors
abstract OutputStream getErrors()
-
setCommand
abstract Unit setCommand(String command)
-
setOptions
abstract Unit setOptions(List<String> options)
-
setExitCodes
abstract Unit setExitCodes(List<Int> exitCodes)
-
setInput
abstract Unit setInput(InputStream input)
-
setOutput
abstract Unit setOutput(OutputStream output)
-
setErrors
abstract Unit setErrors(OutputStream errors)
-
-
-
-