Package jetbrains.buildServer.agent
Class RuntimeProperties
- java.lang.Object
-
- jetbrains.buildServer.agent.RuntimeProperties
-
public class RuntimeProperties extends Object
This class holds properties required by Agent runtime part to work. Before this class was introduced runtime properties passed to the Java as usual system properties which lead to increased command line and an increased risk of interference with user properties. Currently it is a bit Ant specific, but if needed it can be converted into the general properties storage.
-
-
Constructor Summary
Constructors Constructor Description RuntimeProperties(Properties properties)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAntTaskExtensions()
static RuntimeProperties
getInstance()
String
getRuntimeClasspath()
static boolean
isAvailable()
-
-
-
Constructor Detail
-
RuntimeProperties
public RuntimeProperties(Properties properties)
-
-
Method Detail
-
getInstance
public static RuntimeProperties getInstance()
-
isAvailable
public static boolean isAvailable()
-
getRuntimeClasspath
public String getRuntimeClasspath()
-
getAntTaskExtensions
public String getAntTaskExtensions()
-
-