public interface

ProjectImportableCustomFieldParser

implements CustomFieldValueParser
com.atlassian.jira.imports.project.customfield.ProjectImportableCustomFieldParser
Known Indirect Subclasses

Class Overview

If a custom field chooses to persist it's data in a table separate to the custom field values table, then it's custom field type will need to implement this interface in order to make it importable via project import.

The CustomField Type will have to return the entity name of the database table that its values are stored in. Additionally it will have to implement the methods from the CustomFieldValueParser interface. This means that the storage of the customfield is very much constrained by it fitting into a ExternalCustomFieldValue domain object.

Summary

[Expand]
Inherited Constants
From interface com.atlassian.jira.imports.project.parser.CustomFieldValueParser
Public Methods
String getEntityName()
The table name of the ofbiz entity (read database table) in which the custom field values for this custom field type are persisted
[Expand]
Inherited Methods
From interface com.atlassian.jira.imports.project.parser.CustomFieldValueParser

Public Methods

public String getEntityName ()

The table name of the ofbiz entity (read database table) in which the custom field values for this custom field type are persisted

Returns
  • The ofbiz table name for this custom field type