com.atlassian.jira.help
Interface HelpUrl

All Known Implementing Classes:
MockHelpUrl

@ExperimentalApi
public interface HelpUrl

Represents the URL of a JIRA help page. The URL can point to a page within the current JIRA instance (e.g. isLocal() == true) or to a page hosted on an external site.

Since:
v6.2.4

Method Summary
 String getAlt()
          The alternate text for the URL.
 String getKey()
          The key the URL is registered under.
 String getTitle()
          The title for the URL.
 String getUrl()
          The URL for the help.
 boolean isLocal()
          Indicates if the URL is for JIRA internal help (i.e.
 

Method Detail

getUrl

String getUrl()
The URL for the help.

Returns:
the URL for the help.

getAlt

String getAlt()
The alternate text for the URL.

Returns:
The alternate text for the URL.

getTitle

String getTitle()
The title for the URL.

Returns:
The title for the URL.

getKey

String getKey()
The key the URL is registered under.

Returns:
the key the URL is registered under.

isLocal

boolean isLocal()
Indicates if the URL is for JIRA internal help (i.e. help page served by JIRA).

Returns:
true when the URL is designed to be served by JIRA or false otherwise.


Copyright © 2002-2014 Atlassian. All Rights Reserved.