public class

IssueLink

extends Object
java.lang.Object
   ↳ com.atlassian.jira.pageobjects.pages.viewissue.link.IssueLink

Class Overview

Represents an issue link.

Summary

Nested Classes
class IssueLink.Builder  
Public Methods
static IssueLink.Builder builder()
String getDeleteUrl()
Returns the URL to delete the link.
String getIconUrl()
Returns the icon URL.
String getPriorityIconUrl()
Returns the URL of the priority icon.
String getRelationship()
Returns the relationship of the link to the issue.
String getStatus()
Returns the URL of the status icon.
String getSummary()
Returns the summary of the link.
String getTitle()
Returns the title.
String getUrl()
Returns the URL of the link.
boolean hasPriority()
Returns trueif the link has a priority.
boolean hasStatus()
Returns true if the link has a status.
boolean isResolved()
Returns true if the link target has been resolved
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public static IssueLink.Builder builder ()

public String getDeleteUrl ()

Returns the URL to delete the link.

Returns
  • URL to delete the link, never null

public String getIconUrl ()

Returns the icon URL.

Returns
  • icon URL

public String getPriorityIconUrl ()

Returns the URL of the priority icon.

Returns
  • URL of the priority icon, or null if the link does not have a priority

public String getRelationship ()

Returns the relationship of the link to the issue. E.g. "relates to", "blocked by"

Returns
  • relationship of the link to the issue, never null

public String getStatus ()

Returns the URL of the status icon.

Returns
  • URL of the status icon, or null if the link does not have a status

public String getSummary ()

Returns the summary of the link.

Returns
  • summary of the link if one exists, otherwise empty string

public String getTitle ()

Returns the title.

Returns
  • title, never null

public String getUrl ()

Returns the URL of the link.

Returns
  • URL of the link, null if there is no URL for the link

public boolean hasPriority ()

Returns trueif the link has a priority.

Returns
  • true if link has a priority

public boolean hasStatus ()

Returns true if the link has a status.

Returns
  • true if the link has a status

public boolean isResolved ()

Returns true if the link target has been resolved

Returns
  • true if the link target has been resolved

public String toString ()