Interface PlanConfigImportService
- All Known Implementing Classes:
PlanConfigImportServiceImpl
@ExperimentalApi
public interface PlanConfigImportService
Service to import plan configurations from human readable format.
- Since:
- 5.15
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescription@NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties
convertYamlToPlan
(@NotNull String yaml) Converts data from a YAML document to top level plan properties.@NotNull PlanConfigImportService.ImportResult
importPlan
(@NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties planProperties, @Nullable com.atlassian.user.User userForCreation, @NotNull RssPermissions rssPermissions) Validates exported top level plan properties within Bamboo context (e.g.@NotNull PlanConfigImportService.ImportResult
importPlan
(@NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties planProperties, @Nullable com.atlassian.user.User userForCreation, @NotNull RssPermissions rssPermissions, boolean deferEvents, boolean noChangesInProperties) Validates exported top level plan properties within Bamboo context (e.g.@NotNull PlanConfigImportService.ImportResult
importPlanBranch
(@NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties planProperties, @NotNull VcsBranch vcsBranch, @Nullable com.atlassian.user.User user, @NotNull RssPermissions rssPermissions) Import plan branch using specs.void
sendEventsAndScheduleTriggersForBranchIfRequired
(@NotNull PlanConfigImportService.ImportResult importResult, @Nullable com.atlassian.user.User user) Sends events related to branch creation or update and initialises triggers.void
sendEventsAndScheduleTriggersIfRequired
(@NotNull PlanConfigImportService.ImportResult importResult) Sends events related to plan creation or update and initialises triggers.@NotNull PlanConfigImportService.ImportResult
switchToLightweightBranch
(@NotNull PlanKey planBranchKey) Convert a divergent branch to a lightweight branch.@NotNull PlanConfigImportService.ImportResult
updatePlanBranch
(@NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties planProperties, @NotNull VcsBranch vcsBranch, @Nullable com.atlassian.user.User user, @NotNull RssPermissions rssPermissions, @NotNull DivergentBranchDataBean branchDataBean, boolean deferEvents, boolean noChangesInProperties) Update plan branch using specs.void
validatePlanBranchProperties
(@NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties planProperties, @NotNull RssPermissions rssPermissions, @NotNull VcsBranch importedBranch) This method performs validation of YAML types and of the properties without Bamboo context (e.g.void
validatePlanProperties
(@NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties planProperties, @NotNull RssPermissions rssPermissions) This method performs validation of YAML types and of the properties without Bamboo context (e.g.
-
Method Details
-
convertYamlToPlan
@NotNull @NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties convertYamlToPlan(@NotNull @NotNull String yaml) throws com.atlassian.bamboo.specs.api.exceptions.PropertiesValidationException, YamlValidationException Converts data from a YAML document to top level plan properties.- Parameters:
yaml
- YAML String containing definition of top level plan- Returns:
- top level plan properties
- Throws:
YamlValidationException
- if the format of the YAML file is invalidcom.atlassian.bamboo.specs.api.exceptions.PropertiesValidationException
-
validatePlanProperties
void validatePlanProperties(@NotNull @NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties planProperties, @NotNull @NotNull RssPermissions rssPermissions) throws com.atlassian.bamboo.specs.api.exceptions.PropertiesValidationException, YamlValidationException, RssPermissionException This method performs validation of YAML types and of the properties without Bamboo context (e.g. no database integrity is verified).- Parameters:
planProperties
- top level plan propertiesrssPermissions
- projects which can allowed for modification- Throws:
YamlValidationException
- if the format of the YAML file is invalidcom.atlassian.bamboo.specs.api.exceptions.PropertiesValidationException
- if the imported properties were not validRssPermissionException
- if RSS is missing access to projects/repositories
-
validatePlanBranchProperties
void validatePlanBranchProperties(@NotNull @NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties planProperties, @NotNull @NotNull RssPermissions rssPermissions, @NotNull @NotNull VcsBranch importedBranch) throws com.atlassian.bamboo.specs.api.exceptions.PropertiesValidationException, YamlValidationException, RssPermissionException This method performs validation of YAML types and of the properties without Bamboo context (e.g. no database integrity is verified).- Parameters:
planProperties
- plan branch propertiesrssPermissions
- projects which can allowed for modificationimportedBranch
- imported vcs branch- Throws:
YamlValidationException
- if the format of the YAML file is invalidcom.atlassian.bamboo.specs.api.exceptions.PropertiesValidationException
- if the imported properties were not validRssPermissionException
- if RSS is missing access to projects/repositories
-
importPlan
@NotNull @NotNull PlanConfigImportService.ImportResult importPlan(@NotNull @NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties planProperties, @Nullable @Nullable com.atlassian.user.User userForCreation, @NotNull @NotNull RssPermissions rssPermissions) Validates exported top level plan properties within Bamboo context (e.g. verifying database integrity), then imports the data into the database.- Parameters:
planProperties
- top level plan properties to importuserForCreation
- user invoking the importrssPermissions
- projects which can allowed for modification; since 6.2- Returns:
- saved top level plan entity and flag indicating if the plan is new
- Throws:
com.atlassian.bamboo.specs.api.exceptions.PropertiesValidationException
- if data validation failsRssPermissionException
- if rss doesn't have access to dependant projectUnauthorisedException
- if any other type of permission is missing
-
importPlan
@NotNull @NotNull PlanConfigImportService.ImportResult importPlan(@NotNull @NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties planProperties, @Nullable @Nullable com.atlassian.user.User userForCreation, @NotNull @NotNull RssPermissions rssPermissions, boolean deferEvents, boolean noChangesInProperties) throws com.atlassian.bamboo.specs.api.exceptions.PropertiesValidationException, UnauthorisedException, RssPermissionException Validates exported top level plan properties within Bamboo context (e.g. verifying database integrity), then imports the data into the database.- Parameters:
planProperties
- top level plan properties to importuserForCreation
- user invoking the importrssPermissions
- projects which can allowed for modification; since 6.2deferEvents
- when set to true, the import routine will not send creation events nor initialise plan triggers- Returns:
- saved top level plan entity and flag indicating if the plan is new
- Throws:
com.atlassian.bamboo.specs.api.exceptions.PropertiesValidationException
- if data validation failsRssPermissionException
- if rss doesn't have access to dependant projectUnauthorisedException
- if any other type of permission is missing
-
sendEventsAndScheduleTriggersIfRequired
void sendEventsAndScheduleTriggersIfRequired(@NotNull @NotNull PlanConfigImportService.ImportResult importResult) Sends events related to plan creation or update and initialises triggers.- Parameters:
importResult
-
-
sendEventsAndScheduleTriggersForBranchIfRequired
void sendEventsAndScheduleTriggersForBranchIfRequired(@NotNull @NotNull PlanConfigImportService.ImportResult importResult, @Nullable @Nullable com.atlassian.user.User user) Sends events related to branch creation or update and initialises triggers. -
importPlanBranch
@NotNull @NotNull PlanConfigImportService.ImportResult importPlanBranch(@NotNull @NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties planProperties, @NotNull @NotNull VcsBranch vcsBranch, @Nullable @Nullable com.atlassian.user.User user, @NotNull @NotNull RssPermissions rssPermissions) Import plan branch using specs. -
updatePlanBranch
@NotNull @NotNull PlanConfigImportService.ImportResult updatePlanBranch(@NotNull @NotNull com.atlassian.bamboo.specs.api.model.plan.PlanProperties planProperties, @NotNull @NotNull VcsBranch vcsBranch, @Nullable @Nullable com.atlassian.user.User user, @NotNull @NotNull RssPermissions rssPermissions, @NotNull @NotNull DivergentBranchDataBean branchDataBean, boolean deferEvents, boolean noChangesInProperties) Update plan branch using specs. It is expected that plan branch already exists. (fails if it doesn't) -
switchToLightweightBranch
@NotNull @NotNull PlanConfigImportService.ImportResult switchToLightweightBranch(@NotNull @NotNull PlanKey planBranchKey) Convert a divergent branch to a lightweight branch.- Parameters:
planBranchKey
-
-