Package org.eclipse.jetty.start
Class CommandLineBuilder
- java.lang.Object
-
- org.eclipse.jetty.start.CommandLineBuilder
-
public class CommandLineBuilder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description CommandLineBuilder()CommandLineBuilder(java.lang.String bin)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddArg(java.lang.String arg)Add a simple argument to the command line.voidaddEqualsArg(java.lang.String name, java.lang.String value)Similar toaddArg(String)but concats both name + value with an "=" sign, quoting were needed, and excluding the "=" portion if the value is undefined or empty.voidaddRawArg(java.lang.String arg)Add a simple argument to the command line.voiddebug()static java.io.FilefindExecutable(java.io.File root, java.lang.String path)static java.lang.StringfindJavaBin()java.util.List<java.lang.String>getArgs()static java.lang.Stringquote(java.lang.String arg)Perform an optional quoting of the argument, being intelligent with spaces and quotes as needed.java.lang.StringtoString()java.lang.StringtoString(java.lang.String delim)
-
-
-
Method Detail
-
findExecutable
public static java.io.File findExecutable(java.io.File root, java.lang.String path)
-
findJavaBin
public static java.lang.String findJavaBin()
-
quote
public static java.lang.String quote(java.lang.String arg)
Perform an optional quoting of the argument, being intelligent with spaces and quotes as needed. If a subString is set in quotes it won't the subString won't be escaped.- Parameters:
arg- the argument to quote- Returns:
- the quoted and escaped argument
-
addArg
public void addArg(java.lang.String arg)
Add a simple argument to the command line.Will quote arguments that have a space in them.
- Parameters:
arg- the simple argument to add
-
addEqualsArg
public void addEqualsArg(java.lang.String name, java.lang.String value)Similar toaddArg(String)but concats both name + value with an "=" sign, quoting were needed, and excluding the "=" portion if the value is undefined or empty.addEqualsArg("-Dname", "value") = "-Dname=value" addEqualsArg("-Djetty.home", "/opt/company inc/jetty (7)/") = "-Djetty.home=/opt/company\ inc/jetty\ (7)/" addEqualsArg("-Djenkins.workspace", "/opt/workspaces/jetty jdk7/") = "-Djenkins.workspace=/opt/workspaces/jetty\ jdk7/" addEqualsArg("-Dstress", null) = "-Dstress" addEqualsArg("-Dstress", "") = "-Dstress"- Parameters:
name- the namevalue- the value
-
addRawArg
public void addRawArg(java.lang.String arg)
Add a simple argument to the command line.Will NOT quote/escape arguments that have a space in them.
- Parameters:
arg- the simple argument to add
-
getArgs
public java.util.List<java.lang.String> getArgs()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
toString
public java.lang.String toString(java.lang.String delim)
-
debug
public void debug()
-
-