Package org.eclipse.jetty.maven.plugin
Class SystemProperties
- java.lang.Object
-
- org.eclipse.jetty.maven.plugin.SystemProperties
-
public class SystemProperties extends java.lang.Object
SystemProperties Map of name to SystemProperty. When a SystemProperty instance is added, if it has not been already set (eg via the command line java system property) then it will be set.
-
-
Constructor Summary
Constructors Constructor Description SystemProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
containsSystemProperty(java.lang.String name)
boolean
getForce()
java.util.List<SystemProperty>
getSystemProperties()
SystemProperty
getSystemProperty(java.lang.String name)
void
setForce(boolean force)
void
setSystemProperty(SystemProperty prop)
-
-
-
Method Detail
-
setForce
public void setForce(boolean force)
-
getForce
public boolean getForce()
-
setSystemProperty
public void setSystemProperty(SystemProperty prop)
-
getSystemProperty
public SystemProperty getSystemProperty(java.lang.String name)
-
containsSystemProperty
public boolean containsSystemProperty(java.lang.String name)
-
getSystemProperties
public java.util.List<SystemProperty> getSystemProperties()
-
-