public class

WorkflowIssueAction

extends Object
implements IssueOperation
java.lang.Object
   ↳ com.atlassian.jira.pageobjects.model.WorkflowIssueAction

Class Overview

Represents built-in and custom JIRA workflow transitions that are executed as actions in the UI.

For standard issue actions, use DefaultIssueActions

Summary

Fields
public static WorkflowIssueAction CLOSE_ISSUE
Public Constructors
WorkflowIssueAction(long workflowActionId, String uiName)
Public Methods
String cssClass()
CSS class of the operation.
boolean hasShortcut()
whether or not this action has a shortcut associated with it.
String id()
Unique ID of the action used in the UI.
CharSequence shortcut()
Shortcut of this action (if any).
String toString()
String uiName()
UI-visible name of the operation
long workflowActionId()
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.jira.pageobjects.model.IssueOperation

Fields

public static WorkflowIssueAction CLOSE_ISSUE

Public Constructors

public WorkflowIssueAction (long workflowActionId, String uiName)

Public Methods

public String cssClass ()

CSS class of the operation.

Returns
  • unique CSS class of the operation

public boolean hasShortcut ()

whether or not this action has a shortcut associated with it.

Returns
  • true, if this action has a keyboard shortcut

public String id ()

Unique ID of the action used in the UI.

Returns
  • ID of the issue operation

public CharSequence shortcut ()

Shortcut of this action (if any). It must be compatible with the sendKeys(CharSequence) and com.atlassian.pageobjects.framework.element.PageElement#type(CharSequence...) methods.

Returns
  • keyboard shortcut associated with this issue operation.

public String toString ()

public String uiName ()

UI-visible name of the operation

Returns
  • name of the operation

public long workflowActionId ()