Package io.fabric8.maven.docker.config
Class Arguments
- java.lang.Object
-
- io.fabric8.maven.docker.config.Arguments
-
- All Implemented Interfaces:
Serializable
public class Arguments extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classArguments.Builder
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>asStrings()List<String>getExec()StringgetShell()voidset(String shell)Used to support shell specified as a default parameter, e.g.voidsetArg(String arg)voidsetExec(List<String> exec)voidsetShell(String shell)voidvalidate()
-
-
-
Method Detail
-
set
public void set(String shell)
Used to support shell specified as a default parameter, e.g.<cmd>java -jar $HOME/server.jar</cmd>
Read more on this and other useful techniques.
-
setShell
public void setShell(String shell)
-
getShell
public String getShell()
-
setArg
public void setArg(String arg)
- See Also:
execInlined
-
validate
public void validate() throws IllegalArgumentException- Throws:
IllegalArgumentException
-
-