Package jetbrains.buildServer.agent
Interface AgentConfiguration
-
- All Known Implementing Classes:
BuildAgentConfigurationImpl
public interface AgentConfiguration
- Author:
- Maxim.Manuylov Date: 11.10.13
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description File
getAgentHomeDirectory()
File
getAgentInfoFile()
File
getAgentPluginsDirectory()
File
getAgentPluginsUnpackingInfoFile()
File
getAgentToolsDirectory()
File
getAgentUpdateDirectory()
File
getAgentUpgradeFiltersFile()
String
getAgentZipName()
int
getServerConnectionTimeout()
SimpleCredentials
getServerProxyCredentials()
String
getServerProxyHost()
int
getServerProxyPort()
String
getServerUrl()
File
getTempDirectory()
String
getUpdateContentsXmlName()
String
getUpdatePluginsBasePath()
boolean
isAgentUpgradeWithoutRestartAllowed()
boolean
isLoadingToolsOnDemandAllowing()
boolean
isToolsRemovalWithoutRestartAllowed()
boolean
shouldSkipPluginsHashCheck()
-
-
-
Method Detail
-
getAgentHomeDirectory
@NotNull File getAgentHomeDirectory()
-
getAgentZipName
@NotNull String getAgentZipName()
-
getUpdateContentsXmlName
@NotNull String getUpdateContentsXmlName()
-
getUpdatePluginsBasePath
@NotNull String getUpdatePluginsBasePath()
-
getTempDirectory
@NotNull File getTempDirectory()
-
getAgentUpdateDirectory
@NotNull File getAgentUpdateDirectory()
-
getAgentInfoFile
@NotNull File getAgentInfoFile()
-
getServerUrl
String getServerUrl()
-
getServerConnectionTimeout
int getServerConnectionTimeout()
-
getServerProxyHost
@Nullable String getServerProxyHost()
-
getServerProxyPort
int getServerProxyPort()
-
getServerProxyCredentials
@Nullable SimpleCredentials getServerProxyCredentials()
-
getAgentUpgradeFiltersFile
@NotNull File getAgentUpgradeFiltersFile()
-
getAgentPluginsDirectory
@NotNull File getAgentPluginsDirectory()
-
getAgentToolsDirectory
@NotNull File getAgentToolsDirectory()
-
getAgentPluginsUnpackingInfoFile
@NotNull File getAgentPluginsUnpackingInfoFile()
-
shouldSkipPluginsHashCheck
boolean shouldSkipPluginsHashCheck()
-
isLoadingToolsOnDemandAllowing
boolean isLoadingToolsOnDemandAllowing()
-
isAgentUpgradeWithoutRestartAllowed
boolean isAgentUpgradeWithoutRestartAllowed()
-
isToolsRemovalWithoutRestartAllowed
boolean isToolsRemovalWithoutRestartAllowed()
-
-