public class

ExternalCustomFieldValueImpl

extends Object
implements ExternalCustomFieldValue
java.lang.Object
   ↳ com.atlassian.jira.imports.project.customfield.ExternalCustomFieldValueImpl

Class Overview

Used to store a custom field value for use of importing a backup JIRA project into an existing JIRA instance.

Summary

Public Constructors
ExternalCustomFieldValueImpl(String id, String customFieldId, String issueId)
Public Methods
boolean equals(Object o)
String getCustomFieldId()
Returns the ID of the CustomField that this value is stored for.
String getDateValue()
String getId()
Returns the ID of the CustomFieldValue.
String getIssueId()
Returns the Issue ID that this value was stored against.
String getNumberValue()
String getParentKey()
Returns the Parent Key for this Custom Field Value.
String getStringValue()
String getTextValue()
String getValue()
Returns the String representation of the value that is stored.
int hashCode()
void setDateValue(String dateValue)
void setNumberValue(String numberValue)
void setParentKey(String parentKey)
void setStringValue(String stringValue)
void setTextValue(String textValue)
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.jira.imports.project.customfield.ExternalCustomFieldValue

Public Constructors

public ExternalCustomFieldValueImpl (String id, String customFieldId, String issueId)

Public Methods

public boolean equals (Object o)

public String getCustomFieldId ()

Returns the ID of the CustomField that this value is stored for.

Returns
  • the ID of the CustomField that this value is stored for.

public String getDateValue ()

public String getId ()

Returns the ID of the CustomFieldValue.

Returns
  • the ID of the CustomFieldValue.

public String getIssueId ()

Returns the Issue ID that this value was stored against.

Returns
  • the Issue ID that this value was stored against.

public String getNumberValue ()

public String getParentKey ()

Returns the Parent Key for this Custom Field Value. This is normally null, but the "Cascading Select" Custom Field will store the parent Option ID in this field.

Returns
  • the Parent Key for this Custom Field Value.

public String getStringValue ()

public String getTextValue ()

public String getValue ()

Returns the String representation of the value that is stored.

Returns
  • the String representation of the value that is stored.

public int hashCode ()

public void setDateValue (String dateValue)

public void setNumberValue (String numberValue)

public void setParentKey (String parentKey)

public void setStringValue (String stringValue)

public void setTextValue (String textValue)