public class

DefaultDataImportService

extends Object
implements DataImportService
java.lang.Object
   ↳ com.atlassian.jira.bc.dataimport.DefaultDataImportService

Summary

Public Constructors
DefaultDataImportService(DataImportProductionDependencies dependencies, GlobalPermissionManager permissionManager, JiraHome jiraHome, JiraLicenseUpdaterService jiraLicenseService, I18nHelper.BeanFactory beanFactory, OfBizDelegator ofBizDelegator, IndexPathManager indexPathManager, AttachmentPathManager attachmentPathManager, ExternalLinkUtil externalLinkUtil, ApplicationProperties applicationProperties, BuildUtilsInfo buildUtilsInfo, TaskManager taskManager, MailQueue mailQueue, ComponentFactory factory, DbConnectionManager dbConnectionManager, EventExecutorFactory eventExecutorFactory, JiraProperties jiraSystemProperties, ReindexRequestManager reindexRequestManager, ClusterManager clusterManager, UpgradeConstraints upgradeConstraints, FeatureManager featureManager)
Public Methods
void checkClusterNotActive(ErrorCollection errors, I18nHelper i18n)
DataImportService.ImportResult doImport(ApplicationUser loggedInUser, DataImportService.ImportValidationResult result, TaskProgressSink taskProgressSink)
Performs the actual import given a valid validation result.
DataImportService.ImportValidationResult validateImport(ApplicationUser loggedInUser, DataImportParams params)
Given the currently loggedInUser and import params this method does some basic validation of the input.
Protected Methods
void createUserKeysIfNecessary()
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.jira.bc.dataimport.DataImportService

Public Constructors

public DefaultDataImportService (DataImportProductionDependencies dependencies, GlobalPermissionManager permissionManager, JiraHome jiraHome, JiraLicenseUpdaterService jiraLicenseService, I18nHelper.BeanFactory beanFactory, OfBizDelegator ofBizDelegator, IndexPathManager indexPathManager, AttachmentPathManager attachmentPathManager, ExternalLinkUtil externalLinkUtil, ApplicationProperties applicationProperties, BuildUtilsInfo buildUtilsInfo, TaskManager taskManager, MailQueue mailQueue, ComponentFactory factory, DbConnectionManager dbConnectionManager, EventExecutorFactory eventExecutorFactory, JiraProperties jiraSystemProperties, ReindexRequestManager reindexRequestManager, ClusterManager clusterManager, UpgradeConstraints upgradeConstraints, FeatureManager featureManager)

Public Methods

public void checkClusterNotActive (ErrorCollection errors, I18nHelper i18n)

public DataImportService.ImportResult doImport (ApplicationUser loggedInUser, DataImportService.ImportValidationResult result, TaskProgressSink taskProgressSink)

Performs the actual import given a valid validation result. This method is slow! It performs the majority of the tasks outlined in the interface definition.

Parameters
loggedInUser The currently logged in user (may be null during setup)
result A valid validation result containing the DataImportParams provided
taskProgressSink A task progress counter that can be used to indicate how much longer the import has to go. if no progress needs to be recorded simply provide a NULL_SINK
Returns
  • The import result potentially containing an errorcollection and more specific overall error result

public DataImportService.ImportValidationResult validateImport (ApplicationUser loggedInUser, DataImportParams params)

Given the currently loggedInUser and import params this method does some basic validation of the input. This method returns quickly. It does *not* parse the entire XML file. It can be used to check that the user has entered all the required input correctly for the front-end.

In particular this method checks if the user has sysadmin permission. If this method is called from Setup (as indicated by the DataImportParams) the permission check is skipped. Further it will validate that the import xml file exists and verify that the pasted license is valid (if one was provided).

Parameters
loggedInUser The currently logged in user (may be null during setup)
params The DataImportParams contain information provided by the user during import or setup
Returns
  • A validation result with the input as well as any errors.

Protected Methods

protected void createUserKeysIfNecessary ()