com.atlassian.jira.web.action.admin.issuetypes
Interface AddIssueTypeAction

All Known Implementing Classes:
AddNewIssueTypeToScheme, ViewIssueTypes

public interface AddIssueTypeAction

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

Since:
v5.0.1

Method Summary
 String getCancelUrl()
          The URL used for cancelling the form.
 String getDescription()
          Get the description of the issue type.
 List<Pair<String,Object>> getHiddenFields()
          Return a list of {name, value} pairs to be added to the form as hidden fields.
 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.
 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.
 

Method Detail

getIconurl

String getIconurl()
Get the Icon URL for the issue type.

Returns:
the icon URL for the issue type.

setIconurl

void setIconurl(String iconUrl)
Set the Icon URL for the issue type.

Parameters:
iconUrl - the icon URL for the issue type.

getStyle

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

Returns:
the style of the issue type.

setStyle

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.

getSubmitUrl

String getSubmitUrl()
Return the URL used for form submission.

Returns:
the URL for form submission.

getCancelUrl

String getCancelUrl()
The URL used for cancelling the form.

Returns:
the URL for cancel URL.

getName

String getName()
Get the name of the issue type.

Returns:
the name of the issue type.

setName

void setName(String name)
Set the name of the issue type.

Parameters:
name - the name of the issue type.

getDescription

String getDescription()
Get the description of the issue type.

Returns:
the description of the issue type.

setDescription

void setDescription(String description)
Set the description of the issue type.

Parameters:
description - the description of the issue type.

getHiddenFields

List<Pair<String,Object>> getHiddenFields()
Return a list of {name, value} pairs to be added to the form as hidden fields.

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

getManageableOption

ManageableOptionType getManageableOption()


Copyright © 2002-2013 Atlassian. All Rights Reserved.