public interface

AddIssueTypeAction

com.atlassian.jira.web.action.admin.issuetypes.AddIssueTypeAction
Known Indirect Subclasses

Class Overview

Interface implemented by actions that wish to use the "addissuetype.jsp" form.

Summary

Public Methods
String getCancelUrl()
The URL used for cancelling the form.
String getDescription()
Get the description of the issue type.
List<Pair<StringObject>> getHiddenFields()
Return a list of {name, value} pairs to be added to the form as hidden fields.
@Deprecated String getIconurl()
Get the Icon URL for the issue type.
ManageableOptionType getManageableOption()
String getName()
Get the name of the issue type.
String getStyle()
Get the style (i.e.
String getSubmitUrl()
Return the URL used for form submission.
void setDescription(String description)
Set the description of the issue type.
@Deprecated void setIconurl(String iconUrl)
Set the Icon URL for the issue type.
void setName(String name)
Set the name of the issue type.
void setStyle(String style)
Set the style (i.e.

Public Methods

public String getCancelUrl ()

The URL used for cancelling the form.

Returns
  • the URL for cancel URL.

public String getDescription ()

Get the description of the issue type.

Returns
  • the description of the issue type.

public List<Pair<StringObject>> getHiddenFields ()

Return a list of {name, value} pairs to be added to the form as hidden fields.

Returns
  • the list of {name, value} pairs.

@Deprecated public String getIconurl ()

Get the Icon URL for the issue type.

Returns
  • the icon URL for the issue type.

public ManageableOptionType getManageableOption ()

public String getName ()

Get the name of the issue type.

Returns
  • the name of the issue type.

public String getStyle ()

Get the style (i.e. subtask) of the issue type.

Returns
  • the style of the issue type.

public String getSubmitUrl ()

Return the URL used for form submission.

Returns
  • the URL for form submission.

public void setDescription (String description)

Set the description of the issue type.

Parameters
description the description of the issue type.

@Deprecated public void setIconurl (String iconUrl)

Set the Icon URL for the issue type.

Parameters
iconUrl the icon URL for the issue type.

public void setName (String name)

Set the name of the issue type.

Parameters
name the name of the issue type.

public void setStyle (String style)

Set the style (i.e. subtask) of the issue type.

Parameters
style the style (i.e. subtask) of the issue type.