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 FilegetAgentHomeDirectory()FilegetAgentInfoFile()FilegetAgentPluginsDirectory()FilegetAgentPluginsUnpackingInfoFile()FilegetAgentToolsDirectory()FilegetAgentUpdateDirectory()FilegetAgentUpgradeFiltersFile()StringgetAgentZipName()intgetServerConnectionTimeout()SimpleCredentialsgetServerProxyCredentials()StringgetServerProxyHost()intgetServerProxyPort()StringgetServerUrl()FilegetTempDirectory()StringgetUpdateContentsXmlName()StringgetUpdatePluginsBasePath()booleanisAgentUpgradeWithoutRestartAllowed()booleanisLoadingToolsOnDemandAllowing()booleanisToolsRemovalWithoutRestartAllowed()booleanshouldSkipPluginsHashCheck()
-
-
-
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()
-
-