Package com.atlassian.jira.issue.link
Interface IssueLink
- All Superinterfaces:
OfBizValueWrapper
- All Known Implementing Classes:
IssueLinkImpl
-
Method Summary
Modifier and TypeMethodDescriptionGet the issue ID (ie.Get the destination Issue of the link.getId()
Get the Issue ID (ie.Get the source Issue of the link.boolean
Checks if this link's type is a System Link type.Methods inherited from interface com.atlassian.jira.ofbiz.OfBizValueWrapper
getGenericValue, getLong, getString, getTimestamp, store
-
Method Details
-
getId
Long getId() -
getLinkTypeId
Long getLinkTypeId() -
getSourceId
Long getSourceId()Get the Issue ID (ie. {@link com.atlassian.jira.issue.Issue#getId();}) of the linked-from issue. -
getDestinationId
Long getDestinationId()Get the issue ID (ie. {@link com.atlassian.jira.issue.Issue#getId();}) of the linked-to issue. -
getSequence
Long getSequence() -
getIssueLinkType
IssueLinkType getIssueLinkType() -
getSourceObject
Issue getSourceObject()Get the source Issue of the link. -
getDestinationObject
Issue getDestinationObject()Get the destination Issue of the link. -
isSystemLink
boolean isSystemLink()Checks if this link's type is a System Link type. A System Link Type is a link type that is used by JIRA to denote special relationships. For example, a sub-task is linked to its parent issue using a link type that is a System Link Type.
-