com.atlassian.jira.issue.issuelink
Interface IssueLinks


Deprecated. Use LinkCollection instead. Since v5.0.

public interface IssueLinks

This represents the set of issue links from and to a particular Issue, seen in terms of that Issue

Since:
v4.4

Method Summary
 Collection<IssueLink> getAllIssues()
          Deprecated. Returns a collection of issues that contains both inward and outward linking issues.
 Collection<IssueLink> getInwardIssues(String linkName)
          Deprecated. Looks up and returns a sorted list of all inward linked issues by given link name.
 Issue getIssue()
          Deprecated.  
 Set<IssueLinkType> getLinkTypes()
          Deprecated. Returns a set of link types, IssueLinkType objects.
 Collection<IssueLink> getOutwardIssues(String linkName)
          Deprecated. Looks up and returns a sorted list of all outward linked issues by given link name.
 

Method Detail

getIssue

Issue getIssue()
Deprecated. 
Returns:
the root issue that this set of issue links belongs to.

getLinkTypes

Set<IssueLinkType> getLinkTypes()
Deprecated. 
Returns a set of link types, IssueLinkType objects.

Returns:
a set of IssueLinkType objects

getOutwardIssues

Collection<IssueLink> getOutwardIssues(String linkName)
Deprecated. 
Looks up and returns a sorted list of all outward linked issues by given link name.

Parameters:
linkName - link name to lookup issues by
Returns:
a sorted list of browsable outward linked issues

getInwardIssues

Collection<IssueLink> getInwardIssues(String linkName)
Deprecated. 
Looks up and returns a sorted list of all inward linked issues by given link name.

Parameters:
linkName - link name to lookup issues by
Returns:
a sorted list of browsable inward linked issues

getAllIssues

Collection<IssueLink> getAllIssues()
Deprecated. 
Returns a collection of issues that contains both inward and outward linking issues. The returned collection is sorted and does not contain duplicates.

Returns:
a collection of all linked issues


Copyright © 2002-2012 Atlassian. All Rights Reserved.