Class ProjectImportLabelFieldParserImpl

java.lang.Object
com.atlassian.jira.issue.customfields.impl.ProjectImportLabelFieldParserImpl
All Implemented Interfaces:
ProjectImportableCustomFieldParser, CustomFieldValueParser, ProjectImportLabelFieldParser

public class ProjectImportLabelFieldParserImpl extends Object implements ProjectImportLabelFieldParser
Since:
v5.0
  • Constructor Details

    • ProjectImportLabelFieldParserImpl

      public ProjectImportLabelFieldParserImpl()
  • Method Details

    • getEntityName

      public String getEntityName()
      Description copied from interface: ProjectImportableCustomFieldParser
      The table name of the ofbiz entity (read database table) in which the custom field values for this custom field type are persisted
      Specified by:
      getEntityName in interface ProjectImportableCustomFieldParser
      Returns:
      The ofbiz table name for this custom field type
    • parse

      public ExternalCustomFieldValue parse(Map attributes) throws ParseException
      Description copied from interface: CustomFieldValueParser
      Parses the custom field value data from the backup XML.
      Specified by:
      parse in interface CustomFieldValueParser
      Parameters:
      attributes - is a map of key value pairs that represent the attributes of an ExternalCustomFieldValue. The following attributes are required, otherwise a ParseException will be thrown:
      • id (required)
      • customfield (required)
      • issue (required)
      Returns:
      an ExternalCustomFieldValue if the attributes contain the required fields
      Throws:
      ParseException - if the required fields are not found in the attributes map
    • getEntityRepresentation

      public EntityRepresentation getEntityRepresentation(ExternalCustomFieldValue customFieldValue)
      Description copied from interface: CustomFieldValueParser
      Gets an EntityRepresentation that contains the correct attributes based on the populated fields in the provided custom field value.
      Specified by:
      getEntityRepresentation in interface CustomFieldValueParser
      Parameters:
      customFieldValue - contains the populated fields that will end up in the EntityRepresentations map
      Returns:
      an EntityRepresentation that can be persisted using OfBiz