public class

IdKeyPair

extends Object
java.lang.Object
   ↳ com.atlassian.jira.imports.project.mapper.IdKeyPair

Class Overview

Used to hold a Id and key of a value that exists in either a backup JIRA or a live version of JIRA.

Summary

Public Constructors
IdKeyPair(String id, String key)
Public Methods
boolean equals(Object o)
String getId()
Holds the string representation of the database id of the value, must not be null.
String getKey()
Holds the string representation of the descriptive portion of the value (e.g.
int hashCode()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public IdKeyPair (String id, String key)

Public Methods

public boolean equals (Object o)

public String getId ()

Holds the string representation of the database id of the value, must not be null.

Returns
  • string representing the id of the value.

public String getKey ()

Holds the string representation of the descriptive portion of the value (e.g. HSP-1 for an issue, or Bug for an issue type). This value can be null.

Returns
  • descriptive representation of the value (key).

public int hashCode ()