public static final enum

DataImportService.ImportError

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.jira.bc.dataimport.DataImportService.ImportError

Summary

Enum Values
DataImportService.ImportError  CUSTOM_PATH_EXCEPTION  The index or attachment path provided by the data was not valid. 
DataImportService.ImportError  DOWNGRADE_FROM_ONDEMAND  The data being imported is from a newer version of JIRA. 
DataImportService.ImportError  NONE  No error happened. 
DataImportService.ImportError  UPGRADE_EXCEPTION  An error occurred when the data was being upgraded to the latest version. 
DataImportService.ImportError  V1_LICENSE_EXCEPTION  The license provided (either via the input or from the data) was an old version 1 license that is no longer compatible with this version of JIRA. 
Public Methods
static DataImportService.ImportError valueOf(String name)
final static ImportError[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DataImportService.ImportError CUSTOM_PATH_EXCEPTION

The index or attachment path provided by the data was not valid. Meaning it didn't exist or the directory was not writable.

public static final DataImportService.ImportError DOWNGRADE_FROM_ONDEMAND

The data being imported is from a newer version of JIRA.

public static final DataImportService.ImportError NONE

No error happened.

public static final DataImportService.ImportError UPGRADE_EXCEPTION

An error occurred when the data was being upgraded to the latest version.

public static final DataImportService.ImportError V1_LICENSE_EXCEPTION

The license provided (either via the input or from the data) was an old version 1 license that is no longer compatible with this version of JIRA.

Public Methods

public static DataImportService.ImportError valueOf (String name)

public static final ImportError[] values ()