Interface EnvironmentCustomConfig
-
- All Superinterfaces:
BambooIdProvider
,BambooObject
- All Known Implementing Classes:
EnvironmentCustomConfigImpl
@Internal public interface EnvironmentCustomConfig extends BambooObject
Represents custom Environment configuration that will be stored in the database. Should not be exposed outside of it's managing service.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable String
getDockerPipelineConfiguration()
@Nullable MutableEnvironment
getEnvironment()
@Nullable String
getPluginConfiguration()
void
setDockerPipelineConfiguration(@Nullable String configuration)
void
setEnvironment(@NotNull MutableEnvironment environment)
void
setPluginConfiguration(@Nullable String configuration)
-
Methods inherited from interface com.atlassian.bamboo.core.BambooIdProvider
getId
-
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
setId
-
-
-
-
Method Detail
-
getPluginConfiguration
@Nullable @Nullable String getPluginConfiguration()
-
setPluginConfiguration
void setPluginConfiguration(@Nullable @Nullable String configuration)
-
getDockerPipelineConfiguration
@Nullable @Nullable String getDockerPipelineConfiguration()
-
setDockerPipelineConfiguration
void setDockerPipelineConfiguration(@Nullable @Nullable String configuration)
-
getEnvironment
@Nullable @Nullable MutableEnvironment getEnvironment()
-
setEnvironment
void setEnvironment(@NotNull @NotNull MutableEnvironment environment)
-
-