Class DefaultDockerHandlerImpl
java.lang.Object
com.atlassian.bamboo.build.docker.DefaultDockerHandlerImpl
- All Implemented Interfaces:
DockerHandler
-
Constructor Summary
ConstructorsConstructorDescriptionDefaultDockerHandlerImpl(DockerPipelineConfiguration configuration, DockerPipelineValidationService dockerPipelineValidationService, EnvironmentCustomConfigService environmentCustomConfigService, com.atlassian.plugin.ModuleDescriptor moduleDescriptor, TemplateRenderer templateRenderer, TaskManager taskManager, boolean create) -
Method Summary
Modifier and TypeMethodDescriptionvoidappendConfiguration(BuildConfiguration buildConfiguration, Map<String, Object> webFragmentsContextMap, boolean enabled) voiddisable(BuildDefinition buildDefinition, Job job) Called for Docker isolation options that were not selected in Job related UIs.voiddisable(Environment environment) Called for Docker isolation options that were not selected in Environment related UIs.voidenableAndUpdate(BuildDefinition buildDefinition, Job job, Map<String, Object> webFragmentsContextMap) Called for the selected Docker isolation option in Job related UIs.voidenableAndUpdate(Environment environment, Map<String, Object> webFragmentsContextMap) Called for the selected Docker isolation option in Environment related UIs.Renders the edit page.Identifier of Docker isolation type.Renders the view page.booleanReturns enablement state of the implementation.validateConfig(Map<String, Object> webFragmentsContextMap) validate the configuration, only called for enabled option.
-
Constructor Details
-
DefaultDockerHandlerImpl
public DefaultDockerHandlerImpl(DockerPipelineConfiguration configuration, DockerPipelineValidationService dockerPipelineValidationService, EnvironmentCustomConfigService environmentCustomConfigService, com.atlassian.plugin.ModuleDescriptor moduleDescriptor, TemplateRenderer templateRenderer, TaskManager taskManager, boolean create)
-
-
Method Details
-
getEditHtml
Description copied from interface:DockerHandlerRenders the edit page.- Specified by:
getEditHtmlin interfaceDockerHandler
-
getViewHtml
Description copied from interface:DockerHandlerRenders the view page.- Specified by:
getViewHtmlin interfaceDockerHandler
-
isEnabled
public boolean isEnabled()Description copied from interface:DockerHandlerReturns enablement state of the implementation. Typically either 0 or 1 of the implementations are enabled.- Specified by:
isEnabledin interfaceDockerHandler- Returns:
- true if enabled.
-
getIsolationType
Description copied from interface:DockerHandlerIdentifier of Docker isolation type.- Specified by:
getIsolationTypein interfaceDockerHandler- Returns:
-
validateConfig
validate the configuration, only called for enabled option.- Specified by:
validateConfigin interfaceDockerHandler- Parameters:
webFragmentsContextMap-- Returns:
-
enableAndUpdate
public void enableAndUpdate(BuildDefinition buildDefinition, Job job, Map<String, Object> webFragmentsContextMap) Description copied from interface:DockerHandlerCalled for the selected Docker isolation option in Job related UIs. The implementation is to construct the object from webFragmentsContextMap and store it in provided buildDefinition that is later stored by the infrastructure.- Specified by:
enableAndUpdatein interfaceDockerHandler
-
enableAndUpdate
Description copied from interface:DockerHandlerCalled for the selected Docker isolation option in Environment related UIs. The implementation is to construct the object from webFragmentsContextMap and save the new values.- Specified by:
enableAndUpdatein interfaceDockerHandler
-
disable
Description copied from interface:DockerHandlerCalled for Docker isolation options that were not selected in Job related UIs. The implementation is to disable itself, perform cleanup of configuration in provided buildDefition object.- Specified by:
disablein interfaceDockerHandler
-
disable
Description copied from interface:DockerHandlerCalled for Docker isolation options that were not selected in Environment related UIs.- Specified by:
disablein interfaceDockerHandler
-
appendConfiguration
public void appendConfiguration(BuildConfiguration buildConfiguration, Map<String, Object> webFragmentsContextMap, boolean enabled) - Specified by:
appendConfigurationin interfaceDockerHandler
-