com.atlassian.jira.bc.project.version
Interface VersionService

All Known Implementing Classes:
DefaultVersionService

public interface VersionService

Service for VersionService

Since:
v3.13

Nested Class Summary
static class VersionService.AbstractVersionResult
           
static class VersionService.ArchiveVersionValidationResult
           
static class VersionService.CreateVersionValidationResult
           
static class VersionService.MoveVersionValidationResult
           
static class VersionService.ReleaseVersionValidationResult
           
static interface VersionService.ValidationResult
          Represents the results of performing a validation call for a single merge or delete operation.
static interface VersionService.VersionAction
           
static class VersionService.VersionResult
           
static class VersionService.VersionsResult
           
 
Field Summary
static VersionService.VersionAction REMOVE
          Indicates that the Version should be removed from affected issues.
 
Method Summary
 Version archiveVersion(VersionService.ArchiveVersionValidationResult result)
          Takes a validation result and performs the archive operation.
 Version createVersion(com.atlassian.crowd.embedded.api.User user, VersionService.CreateVersionValidationResult request)
          Using the validation result from validateCreateVersion(User, com.atlassian.jira.project.Project, String, String, String, Long) a new version will be created.
 void decreaseVersionSequence(VersionService.MoveVersionValidationResult moveVersionValidationResult)
          Move a version to have a higher sequence number - ie make it later.
 void delete(JiraServiceContext context, VersionService.ValidationResult result)
          Deletes a version from a project.
 long getAffectsIssuesCount(Version version)
          Return the count of Issues that affect this version.
 long getFixIssuesCount(Version version)
          Return the count of Issues Fixed in this version.
 long getUnresolvedIssuesCount(com.atlassian.crowd.embedded.api.User user, Version version)
          Return the count of Issues that are unresolved in this version.
 VersionService.VersionResult getVersionById(com.atlassian.crowd.embedded.api.User user, Long versionId)
          Used to retrieve a Version object by version id.
 VersionService.VersionResult getVersionById(com.atlassian.crowd.embedded.api.User user, Project project, Long versionId)
          Used to retrieve a Version object by version id within project specified by Project object.
 VersionService.VersionResult getVersionByProjectAndName(com.atlassian.crowd.embedded.api.User user, Project project, String versionName)
          Used to retrieve a Version object by version name within project specified by Project object.
 VersionService.VersionsResult getVersionsByProject(com.atlassian.crowd.embedded.api.User user, Project project)
          Used to retrieve a Version collection within project specified by Project object.
 void increaseVersionSequence(VersionService.MoveVersionValidationResult moveVersionValidationResult)
          Move a version to have a lower sequence number - ie make it earlier.
 boolean isOverdue(Version version)
          Is the passed version overdue? This method does no permission checks on the passed version.
 void merge(JiraServiceContext context, VersionService.ValidationResult result)
          Merges a version into another, then removes the original version.
 void moveToEndVersionSequence(VersionService.MoveVersionValidationResult moveVersionValidationResult)
          Move a version to the end of the version sequence.
 void moveToStartVersionSequence(VersionService.MoveVersionValidationResult moveVersionValidationResult)
          Move a version to the start of the version list.
 void moveUnreleasedToNewVersion(com.atlassian.crowd.embedded.api.User user, Version currentVersion, Version newVersion)
          Using the validation result from validateReleaseVersion(User, com.atlassian.jira.project.version.Version, Date) a version will be released.
 void moveVersionAfter(VersionService.MoveVersionValidationResult moveVersionValidationResult)
          Move a version after another version.
 Version releaseVersion(VersionService.ReleaseVersionValidationResult result)
          Using the validation result from validateReleaseVersion(User, com.atlassian.jira.project.version.Version, Date) a version will be released.
 ServiceOutcome<Version> setReleaseDate(com.atlassian.crowd.embedded.api.User user, Version version, Date releaseDate)
          Modify the release date of a version without performing a release/unrelease.
 ServiceOutcome<Version> setReleaseDate(com.atlassian.crowd.embedded.api.User user, Version version, String releaseDate)
          Modify the release date of a version without performing a release/unrelease.
 ServiceOutcome<Version> setVersionDetails(com.atlassian.crowd.embedded.api.User user, Version version, String name, String description)
          Set the name and description of a version, if you have edit permission.
 Version unarchiveVersion(VersionService.ArchiveVersionValidationResult result)
          Takes a validation result and performs the unarchive operation.
 Version unreleaseVersion(VersionService.ReleaseVersionValidationResult result)
          Using the validation result from validateUnreleaseVersion(User, com.atlassian.jira.project.version.Version, Date) a version will be unreleased.
 VersionService.ArchiveVersionValidationResult validateArchiveVersion(com.atlassian.crowd.embedded.api.User user, Version version)
          This method should be called before archiving a version.
 VersionService.CreateVersionValidationResult validateCreateVersion(com.atlassian.crowd.embedded.api.User user, Project project, String versionName, Date releaseDate, String description, Long scheduleAfterVersion)
          This method needs to be called before creating a version to ensure all parameters are correct.
 VersionService.CreateVersionValidationResult validateCreateVersion(com.atlassian.crowd.embedded.api.User user, Project project, String versionName, String releaseDate, String description, Long scheduleAfterVersion)
          This method needs to be called before creating a version to ensure all parameters are correct.
 VersionService.MoveVersionValidationResult validateDecreaseVersionSequence(com.atlassian.crowd.embedded.api.User user, long versionId)
          Validate Move a version to have a higher sequence number - ie make it later.
 VersionService.ValidationResult validateDelete(JiraServiceContext context, Long versionId, VersionService.VersionAction affectsAction, VersionService.VersionAction fixAction)
          Validates an attempt to delete a version from a project.
 VersionService.MoveVersionValidationResult validateIncreaseVersionSequence(com.atlassian.crowd.embedded.api.User user, long versionId)
          Validate Move a version to have a lower sequence number - ie make it earlier.
 VersionService.ValidationResult validateMerge(JiraServiceContext context, Long versionId, Long swapVersionId)
          Validates an attempt to merge a version into another.
 VersionService.MoveVersionValidationResult validateMoveToEndVersionSequence(com.atlassian.crowd.embedded.api.User user, long versionId)
          Validate Move a version to the end of the version sequence.
 VersionService.MoveVersionValidationResult validateMoveToStartVersionSequence(com.atlassian.crowd.embedded.api.User user, long versionId)
          Validate Move a version to the start of the version list.
 VersionService.MoveVersionValidationResult validateMoveVersionAfter(com.atlassian.crowd.embedded.api.User user, long versionId, Long scheduleAfterVersion)
          Validate Move a version after another version.
 ServiceOutcome<Version> validateReleaseDate(com.atlassian.crowd.embedded.api.User user, Version version, String releaseDate)
          Validate the release date of a version without performing a release/unrelease.
 VersionService.ReleaseVersionValidationResult validateReleaseVersion(com.atlassian.crowd.embedded.api.User user, Version version, Date releaseDate)
          This method needs to be called before releasing a version to ensure all parameters are correct.
 VersionService.ReleaseVersionValidationResult validateReleaseVersion(com.atlassian.crowd.embedded.api.User user, Version version, String releaseDate)
          This method needs to be called before releasing a version to ensure all parameters are correct.
 VersionService.ArchiveVersionValidationResult validateUnarchiveVersion(com.atlassian.crowd.embedded.api.User user, Version version)
          This method should be called before unarchiving a version.
 VersionService.ReleaseVersionValidationResult validateUnreleaseVersion(com.atlassian.crowd.embedded.api.User user, Version version, Date releaseDate)
          This method needs to be called before unreleasing a version to ensure all parameters are correct.
 VersionService.ReleaseVersionValidationResult validateUnreleaseVersion(com.atlassian.crowd.embedded.api.User user, Version version, String releaseDate)
          This method needs to be called before unreleasing a version to ensure all parameters are correct.
 ErrorCollection validateVersionDetails(com.atlassian.crowd.embedded.api.User user, Version version, String name, String description)
          Validate the name and description of a version, if you have edit permission.
 

Field Detail

REMOVE

static final VersionService.VersionAction REMOVE
Indicates that the Version should be removed from affected issues.

Method Detail

validateVersionDetails

ErrorCollection validateVersionDetails(com.atlassian.crowd.embedded.api.User user,
                                       Version version,
                                       String name,
                                       String description)
Validate the name and description of a version, if you have edit permission.

Parameters:
user - the user who is performing the edit operation
version - the version that they want to edit
name - the new name for the version (must not be null or already in use)
description - the new description for the version
Returns:
an ErrorCollection that contains the success or failure of the update
Throws:
IllegalArgumentException - if the name is null or duplicates an existing name

setVersionDetails

ServiceOutcome<Version> setVersionDetails(com.atlassian.crowd.embedded.api.User user,
                                          Version version,
                                          String name,
                                          String description)
Set the name and description of a version, if you have edit permission.

Parameters:
user - the user who is performing the edit operation
version - the version that they want to edit
name - the new name for the version (must not be null or already in use)
description - the new description for the version
Returns:
a ServiceOutcome that contains the success or failure of the update
Throws:
IllegalArgumentException - if the name is null or duplicates an existing name

setReleaseDate

ServiceOutcome<Version> setReleaseDate(com.atlassian.crowd.embedded.api.User user,
                                       Version version,
                                       Date releaseDate)
Modify the release date of a version without performing a release/unrelease.

Parameters:
user - the user who is changing the release date
version - the version they want to modify
releaseDate - the new release date to use
Returns:
a ServiceOutcome describing the success/failure of the edit, along with the new Version if successful

validateReleaseDate

ServiceOutcome<Version> validateReleaseDate(com.atlassian.crowd.embedded.api.User user,
                                            Version version,
                                            String releaseDate)
Validate the release date of a version without performing a release/unrelease.

Parameters:
user - the user who is changing the release date
version - the version they want to modify
releaseDate - the new release date to use
Returns:
a ServiceOutcome describing the success/failure of the edit, along with the new Version if successful

setReleaseDate

ServiceOutcome<Version> setReleaseDate(com.atlassian.crowd.embedded.api.User user,
                                       Version version,
                                       String releaseDate)
Modify the release date of a version without performing a release/unrelease.

Parameters:
user - the user who is changing the release date
version - the version they want to modify
releaseDate - the new release date to use
Returns:
a ServiceOutcome describing the success/failure of the edit, along with the new Version if successful

validateDelete

VersionService.ValidationResult validateDelete(JiraServiceContext context,
                                               Long versionId,
                                               VersionService.VersionAction affectsAction,
                                               VersionService.VersionAction fixAction)
Validates an attempt to delete a version from a project. When deleting a version, we need to decide what to do with issues that reference the version in their Affects of Fix Version fields. The action taken is specified as a flag for each field.

Parameters:
context - The context for this service call.
versionId - The id of the version to be deleted.
affectsAction - Used to decide whether to move all the issues to a different 'affects' version or just remove them. See VersionKeys.REMOVE_ACTION, VersionKeys.SWAP_ACTION
fixAction - Used to decide wether to move all the issues to a different 'fix' version or just remove them. See VersionKeys.REMOVE_ACTION, VersionKeys.SWAP_ACTION
Returns:
a VersionService.ValidationResult object which contains the version to delete, and the versions to swap to for Affects and Fix versions, or null if the action to be taken is VersionKeys.REMOVE_ACTION

delete

void delete(JiraServiceContext context,
            VersionService.ValidationResult result)
Deletes a version from a project. When deleting a version, we need to decide what to do with issues that reference the version in their Affects of Fix Version fields. The action taken is specified as a flag for each field.

Parameters:
context - The context for this service call.
result - The result of validation, which contains the version to be deleted, and the swap versions for Affects and Fix fields

validateMerge

VersionService.ValidationResult validateMerge(JiraServiceContext context,
                                              Long versionId,
                                              Long swapVersionId)
Validates an attempt to merge a version into another. Merging is essentially the same as Deleting with the actions set to VersionKeys.SWAP_ACTION.

Parameters:
context - The context for this service call.
versionId - The original version to be merged and removed.
swapVersionId - The target version of the merge operation. Must be from the same project.
Returns:
a VersionService.ValidationResult object which contains the version to delete, and the versions to swap to for Affects and Fix versions, or null if the action to be taken is VersionKeys.REMOVE_ACTION

merge

void merge(JiraServiceContext context,
           VersionService.ValidationResult result)
Merges a version into another, then removes the original version.

Parameters:
context - The context for this service call.
result - The result of validation, which contains the version to be deleted, and the swap versions for Affects and Fix fields

getVersionById

VersionService.VersionResult getVersionById(com.atlassian.crowd.embedded.api.User user,
                                            Project project,
                                            Long versionId)
Used to retrieve a Version object by version id within project specified by Project object. This method returns a VersionService.VersionResult. The version will be null if no version for the id specified can be found, or if the user making the request does not have the ADMIN, PROJECT_ADMIN or BROWSE project permission for the project. In both of these cases, the errorCollection in the result object will contain an appropriate error message.

Parameters:
user - The user trying to get a version
project - The project object containing requested version
versionId - The id of requested version
Returns:
VersionResult object

getVersionById

VersionService.VersionResult getVersionById(com.atlassian.crowd.embedded.api.User user,
                                            Long versionId)
Used to retrieve a Version object by version id. This method returns a VersionService.VersionResult. The version will be null if no version for the id specified can be found, or if the user making the request does not have the ADMIN, PROJECT_ADMIN or BROWSE project permission for the project. In both of these cases, the errorCollection in the result object will contain an appropriate error message.

Parameters:
user - The user trying to get a version
versionId - The id of requested version
Returns:
VersionResult object
Since:
4.2

getVersionByProjectAndName

VersionService.VersionResult getVersionByProjectAndName(com.atlassian.crowd.embedded.api.User user,
                                                        Project project,
                                                        String versionName)
Used to retrieve a Version object by version name within project specified by Project object. This method returns a VersionService.VersionResult. The version will be null if no version for the versionName specified can be found, or if the user making the request does not have the ADMIN, PROJECT_ADMIN or BROWSE project permission for the project. In both of these cases, the errorCollection in the result object will contain an appropriate error message.

Parameters:
user - The user trying to get a version
project - The project object containing requested version
versionName - The name of requested version
Returns:
VerionResult object

getVersionsByProject

VersionService.VersionsResult getVersionsByProject(com.atlassian.crowd.embedded.api.User user,
                                                   Project project)
Used to retrieve a Version collection within project specified by Project object. This method returns a VersionService.VersionsResult. The versions collection will be empty if the user making the request does not have the ADMIN, PROJECT_ADMIN or BROWSE project permission for the project. In this case, the errorCollection in the result object will contain an appropriate error message.

Parameters:
user - The user trying to get a version
project - The project object containing requested version
Returns:
VerionsResult object

validateCreateVersion

VersionService.CreateVersionValidationResult validateCreateVersion(com.atlassian.crowd.embedded.api.User user,
                                                                   Project project,
                                                                   String versionName,
                                                                   String releaseDate,
                                                                   String description,
                                                                   Long scheduleAfterVersion)
This method needs to be called before creating a version to ensure all parameters are correct. There are a number of required parameters, such as a project object and versionName. An error will be returned if the user making the request does not have the ADMIN or PROJECT_ADMIN permission for the project. The validation will also check if a version with the name provided already exists and throw an appropriate error.

Optional validation will be done for the release date, if provided. An error will be returned, if date format is valid.

The method will return a VersionService.CreateVersionValidationResult which contains an ErrorCollection with any potential errors and all the version's details.

Parameters:
user - The user trying to create a version
project - The project object containing requested version
versionName - The name of created version
releaseDate - The release date for a version (optional)
description - The description for a version (optional)
scheduleAfterVersion - The version after which created version should be scheduled (optional)
Returns:
CreateVersionValidationResult object

validateCreateVersion

VersionService.CreateVersionValidationResult validateCreateVersion(com.atlassian.crowd.embedded.api.User user,
                                                                   Project project,
                                                                   String versionName,
                                                                   Date releaseDate,
                                                                   String description,
                                                                   Long scheduleAfterVersion)
This method needs to be called before creating a version to ensure all parameters are correct. There are a number of required parameters, such as a project object and versionName. An error will be returned if the user making the request does not have the ADMIN or PROJECT_ADMIN permission for the project. The validation will also check if a version with the name provided already exists and throw an appropriate error.

Optional validation will be done for the release date, if provided. An error will be returned, if date format is valid.

The method will return a VersionService.CreateVersionValidationResult which contains an ErrorCollection with any potential errors and all the version's details.

Parameters:
user - The user trying to create a version
project - The project object containing requested version
versionName - The name of created version
releaseDate - The release date for a version (optional)
description - The description for a version (optional)
scheduleAfterVersion - The version after which created version should be scheduled (optional)
Returns:
CreateVersionValidationResult object

createVersion

Version createVersion(com.atlassian.crowd.embedded.api.User user,
                      VersionService.CreateVersionValidationResult request)
Using the validation result from validateCreateVersion(User, com.atlassian.jira.project.Project, String, String, String, Long) a new version will be created. This method will throw an RuntimeException if the version could not be created.

Parameters:
user - The user trying to get a version
request - The VersionService.CreateVersionValidationResult object containg all required data
Returns:
created Version object

validateReleaseVersion

VersionService.ReleaseVersionValidationResult validateReleaseVersion(com.atlassian.crowd.embedded.api.User user,
                                                                     Version version,
                                                                     Date releaseDate)
This method needs to be called before releasing a version to ensure all parameters are correct. There is required parameter, version object. An error will be returned if the user making the request does not have the ADMIN or PROJECT_ADMIN permission for the project. The validation will also check if a version provided has a valid name and if is not released already.

The method will return a VersionService.ReleaseVersionValidationResult which contains an ErrorCollection with any potential errors and all the version's details.

Parameters:
user - The user trying to release a version
version - The version to release
releaseDate - The version release date (optional)
Returns:
ReleaseVersionValidationResult object

validateReleaseVersion

VersionService.ReleaseVersionValidationResult validateReleaseVersion(com.atlassian.crowd.embedded.api.User user,
                                                                     Version version,
                                                                     String releaseDate)
This method needs to be called before releasing a version to ensure all parameters are correct. There is required parameter, version object. An error will be returned if the user making the request does not have the ADMIN or PROJECT_ADMIN permission for the project. The validation will also check if a version provided has a valid name and if is not released already.

The method will return a VersionService.ReleaseVersionValidationResult which contains an ErrorCollection with any potential errors and all the version's details.

Parameters:
user - The user trying to release a version
version - The version to release
releaseDate - The version release date (optional)
Returns:
ReleaseVersionValidationResult object

validateUnreleaseVersion

VersionService.ReleaseVersionValidationResult validateUnreleaseVersion(com.atlassian.crowd.embedded.api.User user,
                                                                       Version version,
                                                                       Date releaseDate)
This method needs to be called before unreleasing a version to ensure all parameters are correct. There is required parameter, version object. An error will be returned if the user making the request does not have the ADMIN or PROJECT_ADMIN permission for the project. The validation will also check if a version provided has a valid name and if is released already.

The method will return a VersionService.ReleaseVersionValidationResult which contains an ErrorCollection with any potential errors and all the version's details.

Parameters:
user - The user trying to unrelease a version
version - The version to release
releaseDate - The version release date (optional)
Returns:
ReleaseVersionValidationResult object

validateUnreleaseVersion

VersionService.ReleaseVersionValidationResult validateUnreleaseVersion(com.atlassian.crowd.embedded.api.User user,
                                                                       Version version,
                                                                       String releaseDate)
This method needs to be called before unreleasing a version to ensure all parameters are correct. There is required parameter, version object. An error will be returned if the user making the request does not have the ADMIN or PROJECT_ADMIN permission for the project. The validation will also check if a version provided has a valid name and if is released already.

The method will return a VersionService.ReleaseVersionValidationResult which contains an ErrorCollection with any potential errors and all the version's details.

Parameters:
user - The user trying to unrelease a version
version - The version to release
releaseDate - The version release date (optional)
Returns:
ReleaseVersionValidationResult object

releaseVersion

Version releaseVersion(VersionService.ReleaseVersionValidationResult result)
Using the validation result from validateReleaseVersion(User, com.atlassian.jira.project.version.Version, Date) a version will be released. This method will throw an IllegalArgumentException if the provied data are invalid and version could not be released.

Parameters:
result - a ReleaseVersionValidationResult containg required data
Returns:
a released version object

moveUnreleasedToNewVersion

void moveUnreleasedToNewVersion(com.atlassian.crowd.embedded.api.User user,
                                Version currentVersion,
                                Version newVersion)
Using the validation result from validateReleaseVersion(User, com.atlassian.jira.project.version.Version, Date) a version will be released. This method will throw an IllegalArgumentException if the provied data are invalid and version could not be released.

Parameters:
user - The user trying to release a version
currentVersion - The current version being released.
newVersion - The version to move issues to.

unreleaseVersion

Version unreleaseVersion(VersionService.ReleaseVersionValidationResult result)
Using the validation result from validateUnreleaseVersion(User, com.atlassian.jira.project.version.Version, Date) a version will be unreleased. This method will throw an IllegalArgumentException if the provied data are invalid and version could not be unreleased.

Parameters:
result - a ReleaseVersionValidationResult containg required data
Returns:
a unreleased version object

validateArchiveVersion

VersionService.ArchiveVersionValidationResult validateArchiveVersion(com.atlassian.crowd.embedded.api.User user,
                                                                     Version version)
This method should be called before archiving a version. It performs some basic validation of the version that was passed in. This includes a null check, checking that the version name isn't empty, and checking that the version is linked against a valid project.

The method also validates that the user passed in is either a global admin, or has project admin rights for the project that the version is linked to.

Finally, this method checks that the version that was passed in hasn't already been archived. If there's any errors, the validationResult will contain appropriate errors and wont be valid.

Parameters:
user - The user performing this operation
version - The version to be archived
Returns:
a validation result, containing any errors or the version details on success

validateUnarchiveVersion

VersionService.ArchiveVersionValidationResult validateUnarchiveVersion(com.atlassian.crowd.embedded.api.User user,
                                                                       Version version)
This method should be called before unarchiving a version. It performs some basic validation of the version that was passed in. This includes a null check, checking that the version name isn't empty, and checking that the version is linked against a valid project.

The method also validates that the user passed in is either a global admin, or has project admin rights for the project that the version is linked to.

Finally, this method checks that the version that was passed is currently archived. If there's any errors, the validationResult will contain appropriate errors and wont be valid.

Parameters:
user - The user performing this operation
version - The version to be archived
Returns:
a validation result, containing any errors or the version details on success

archiveVersion

Version archiveVersion(VersionService.ArchiveVersionValidationResult result)
Takes a validation result and performs the archive operation.

Parameters:
result - The result from the validation
Returns:
The version that was archived. Ideally this version should have been retrieved from the store for consistency
Throws:
IllegalStateException - if the result passed in is not valid.

unarchiveVersion

Version unarchiveVersion(VersionService.ArchiveVersionValidationResult result)
Takes a validation result and performs the unarchive operation.

Parameters:
result - The result from the validation
Returns:
The version that was unarchived. Ideally this version should have been retrieved from the store for consistency
Throws:
IllegalStateException - if the result passed in is not valid.

isOverdue

boolean isOverdue(Version version)
Is the passed version overdue? This method does no permission checks on the passed version.

Parameters:
version - the version to check.
Returns:
true if the passed version is overdue.

validateMoveToStartVersionSequence

VersionService.MoveVersionValidationResult validateMoveToStartVersionSequence(com.atlassian.crowd.embedded.api.User user,
                                                                              long versionId)
Validate Move a version to the start of the version list.

Parameters:
user - The user trying to move a version
versionId -
Returns:
a validation result, containing any errors or the version details on success

validateIncreaseVersionSequence

VersionService.MoveVersionValidationResult validateIncreaseVersionSequence(com.atlassian.crowd.embedded.api.User user,
                                                                           long versionId)
Validate Move a version to have a lower sequence number - ie make it earlier.

Parameters:
user - The user trying to move a version
versionId -
Returns:
a validation result, containing any errors or the version details on success

validateDecreaseVersionSequence

VersionService.MoveVersionValidationResult validateDecreaseVersionSequence(com.atlassian.crowd.embedded.api.User user,
                                                                           long versionId)
Validate Move a version to have a higher sequence number - ie make it later.

Parameters:
user - The user trying to move a version
versionId -
Returns:
a validation result, containing any errors or the version details on success

validateMoveToEndVersionSequence

VersionService.MoveVersionValidationResult validateMoveToEndVersionSequence(com.atlassian.crowd.embedded.api.User user,
                                                                            long versionId)
Validate Move a version to the end of the version sequence.

Parameters:
user - The user trying to move a version
versionId -
Returns:
a validation result, containing any errors or the version details on success

validateMoveVersionAfter

VersionService.MoveVersionValidationResult validateMoveVersionAfter(com.atlassian.crowd.embedded.api.User user,
                                                                    long versionId,
                                                                    Long scheduleAfterVersion)
Validate Move a version after another version.

Parameters:
user - The user trying to move a version
versionId - version to reschedule
scheduleAfterVersion - id of the version to schedule after the given version object
Returns:
a validation result, containing any errors or the version details and schedule after target on success

moveToStartVersionSequence

void moveToStartVersionSequence(VersionService.MoveVersionValidationResult moveVersionValidationResult)
Move a version to the start of the version list.

Parameters:
moveVersionValidationResult - Move Version Validation Result

increaseVersionSequence

void increaseVersionSequence(VersionService.MoveVersionValidationResult moveVersionValidationResult)
Move a version to have a lower sequence number - ie make it earlier.

Parameters:
moveVersionValidationResult - Move Version Validation Result

decreaseVersionSequence

void decreaseVersionSequence(VersionService.MoveVersionValidationResult moveVersionValidationResult)
Move a version to have a higher sequence number - ie make it later.

Parameters:
moveVersionValidationResult - Move Version Validation Result

moveToEndVersionSequence

void moveToEndVersionSequence(VersionService.MoveVersionValidationResult moveVersionValidationResult)
Move a version to the end of the version sequence.

Parameters:
moveVersionValidationResult - Move Version Validation Result

moveVersionAfter

void moveVersionAfter(VersionService.MoveVersionValidationResult moveVersionValidationResult)
Move a version after another version.

Parameters:
moveVersionValidationResult - Move Version Validation Result

getFixIssuesCount

long getFixIssuesCount(Version version)
Return the count of Issues Fixed in this version.

Parameters:
version -
Returns:
A count of issues

getAffectsIssuesCount

long getAffectsIssuesCount(Version version)
Return the count of Issues that affect this version.

Parameters:
version -
Returns:
A count of issues

getUnresolvedIssuesCount

long getUnresolvedIssuesCount(com.atlassian.crowd.embedded.api.User user,
                              Version version)
Return the count of Issues that are unresolved in this version. Used when releasing a version to get user confirmation about what to do with the unresolved issues.

Parameters:
user - the user trying to release the version
version - which version to check for unresolved issues
Returns:
A count of issues


Copyright © 2002-2012 Atlassian. All Rights Reserved.