com.atlassian.bamboo.task
Interface TaskConfigurator

All Known Subinterfaces:
TaskRequirementSupport, TaskTestResultsSupport

public interface TaskConfigurator

Implement this class if you want the user to be able to configure your task.

Since:
3.1
See Also:
TaskDefinition

Method Summary
 java.util.Map generateTaskConfigMap(ActionParametersMap params, TaskDefinition previousTaskDefinition)
          Convert the params from the ui into a config map to be stored in the database for the taskDefinition.
 void populateContextForCreate(java.util.Map context)
          Provide any required context to be used when rendering the freemarker template for creating a task definition.
 void populateContextForEdit(java.util.Map context, TaskDefinition taskDefinition)
          Provide any required context to be used when rendering the freemarker template for view editing a task definition
 void populateContextForView(java.util.Map context, TaskDefinition taskDefinition)
          Provide any required context to be used when rendering the freemarker template for viewing a task definition
 void validate(ActionParametersMap params, ErrorCollection errorCollection)
          Validate the params submitted from the UI for this task definition
 

Method Detail

populateContextForView

void populateContextForView(@NotNull
                            java.util.Map context,
                            @NotNull
                            TaskDefinition taskDefinition)
Provide any required context to be used when rendering the freemarker template for viewing a task definition

Parameters:
context - map to put your context in.
taskDefinition - existing task definition

populateContextForEdit

void populateContextForEdit(@NotNull
                            java.util.Map context,
                            @NotNull
                            TaskDefinition taskDefinition)
Provide any required context to be used when rendering the freemarker template for view editing a task definition

Parameters:
context - map to put your context in.
taskDefinition - existing task definition

populateContextForCreate

void populateContextForCreate(@NotNull
                              java.util.Map context)
Provide any required context to be used when rendering the freemarker template for creating a task definition. Allows you to add any default values for initial creation

Parameters:
context - map to put your context in.

validate

void validate(@NotNull
              ActionParametersMap params,
              @NotNull
              ErrorCollection errorCollection)
Validate the params submitted from the UI for this task definition

Parameters:
params - - request paramaters
errorCollection - - collection to put any errors in.

generateTaskConfigMap

@NotNull
java.util.Map generateTaskConfigMap(@NotNull
                                            ActionParametersMap params,
                                            @Nullable
                                            TaskDefinition previousTaskDefinition)
Convert the params from the ui into a config map to be stored in the database for the taskDefinition. Can assume validation has occured in the #validate method

Parameters:
params - - request paramaters
previousTaskDefinition - - the previous immutable TaskDefinition before saving or null if Task is being created
Returns:
the configuration map to be stored in the database


Copyright © 2011 Atlassian. All Rights Reserved.