Interface StatusMapperValidator
- All Known Implementing Classes:
StatusMapperValidatorImpl
public interface StatusMapperValidator
Validates the automatic mappings that have been created to see if the mappings are relevant in the current
JIRA instances setup. This validator makes sure that the statuses that are required:
- exist in the current instance
- are valid for the issue type registered based on the workflow associated with the project being restored
- Since:
- v3.13
-
Method Summary
Modifier and TypeMethodDescriptionboolean
isStatusValid
(String oldStatusId, Status existingStatus, StatusMapper statusMapper, IssueTypeMapper issueTypeMapper, String projectKey) Determines if a Status is valid within the context of the provided project and the provided issue types.validateMappings
(I18nHelper i18nHelper, BackupProject backupProject, IssueTypeMapper issueTypeMapper, StatusMapper statusMapper) Makes sure that the statuses that are required: exist in the current instance are valid for the issue type registered based on the workflow associated with the project being restored
-
Method Details
-
validateMappings
MessageSet validateMappings(I18nHelper i18nHelper, BackupProject backupProject, IssueTypeMapper issueTypeMapper, StatusMapper statusMapper) Makes sure that the statuses that are required:- exist in the current instance
- are valid for the issue type registered based on the workflow associated with the project being restored
- Parameters:
i18nHelper
- helper bean that allows us to get i18n translationsbackupProject
- is the backup project the data is mapped fromissueTypeMapper
- is the populated issueTypeMapperstatusMapper
- is the populated statusMapper- Returns:
- a MessageSet that will contain any generated errors (which should stop the import) or warnings (which should be displayed to the user). The error and warning collection's will be empty if all validation passes.
-
isStatusValid
boolean isStatusValid(String oldStatusId, Status existingStatus, StatusMapper statusMapper, IssueTypeMapper issueTypeMapper, String projectKey) Determines if a Status is valid within the context of the provided project and the provided issue types.- Parameters:
oldStatusId
- the status id from the backup fileexistingStatus
- the status object from the new system that may map to the old status, this can be nullstatusMapper
- the status mapper that will provide a list of the associated issue type for the statusissueTypeMapper
- the fully mapped and populated issueTypeMapper that will allow us to map the backup issue types to existing issue types.projectKey
- the project key that will allow us to find the correct workflow scheme for the project we are importing into- Returns:
- true if the status is valid for the project and issue types, false otherwise
-