public interface

IssueLinking

com.atlassian.jira.functest.framework.admin.IssueLinking
Known Indirect Subclasses

Class Overview

Represents the Issue Linking administration page.

Summary

Public Methods
void addIssueLink(String name, String outward, String inward)
Adds an issue link type to JIRA.
void delete(String name)
Deletes an issue link type.
void disable()
Disables issue linking across JIRA.
void enable()
Enables issue linking across JIRA.
boolean exists(String name)
Determines whether an issue link type exists or not.

Public Methods

public void addIssueLink (String name, String outward, String inward)

Adds an issue link type to JIRA.

Parameters
name the name of the issue link type to create.
outward the label to describe outward links.
inward the label to describe inward links.

public void delete (String name)

Deletes an issue link type.

Parameters
name the name of the issue link type to delete.

public void disable ()

Disables issue linking across JIRA.

public void enable ()

Enables issue linking across JIRA.

public boolean exists (String name)

Determines whether an issue link type exists or not.

Parameters
name The name of the issue type to test for.
Returns
  • true if the issue link type with the specified name exists; otherwise false.