Uses of Interface
com.atlassian.jira.workflow.JiraWorkflow

Packages that use JiraWorkflow
com.atlassian.jira.bc.config   
com.atlassian.jira.bc.workflow   
com.atlassian.jira.bulkedit.operation   
com.atlassian.jira.config.managedconfiguration   
com.atlassian.jira.dev.backdoor   
com.atlassian.jira.event   
com.atlassian.jira.issue.status.category   
com.atlassian.jira.mock.workflow   
com.atlassian.jira.web.action.admin.issuefields.screens   
com.atlassian.jira.web.action.admin.statuses   
com.atlassian.jira.web.action.admin.workflow   
com.atlassian.jira.web.action.admin.workflow.scheme   
com.atlassian.jira.web.action.admin.workflow.tabs   
com.atlassian.jira.web.action.issue   
com.atlassian.jira.web.action.issue.bulkedit   
com.atlassian.jira.web.action.issue.enterprise   
com.atlassian.jira.web.bean   
com.atlassian.jira.web.component   
com.atlassian.jira.workflow   
com.atlassian.jira.workflow.tabs   
 

Uses of JiraWorkflow in com.atlassian.jira.bc.config
 

Methods in com.atlassian.jira.bc.config that return types with arguments of type JiraWorkflow
static com.google.common.base.Predicate<JiraWorkflow> DefaultStatusService.containsStatus(Status status)
           
 ServiceOutcome<List<JiraWorkflow>> DefaultStatusService.getAssociatedWorkflows(ApplicationUser user, Status status)
           
 ServiceOutcome<List<JiraWorkflow>> StatusService.getAssociatedWorkflows(ApplicationUser user, Status status)
          Gets a list of workflows which contains given status
 

Uses of JiraWorkflow in com.atlassian.jira.bc.workflow
 

Methods in com.atlassian.jira.bc.workflow that return JiraWorkflow
 JiraWorkflow DefaultWorkflowService.copyWorkflow(JiraServiceContext jiraServiceContext, String clonedWorkflowName, String clonedWorkflowDescription, JiraWorkflow workflowToClone)
           
 JiraWorkflow WorkflowService.copyWorkflow(JiraServiceContext jiraServiceContext, String clonedWorkflowName, String clonedWorkflowDescription, JiraWorkflow workflowToClone)
          Clones and persists a new workflow with the name given.
 JiraWorkflow DefaultWorkflowService.createDraftWorkflow(JiraServiceContext jiraServiceContext, String parentWorkflowName)
           
 JiraWorkflow WorkflowService.createDraftWorkflow(JiraServiceContext jiraServiceContext, String parentWorkflowName)
          Creates a copy of an active workflow for editing.
 JiraWorkflow DefaultWorkflowService.getDraftWorkflow(JiraServiceContext jiraServiceContext, String parentWorkflowName)
           
 JiraWorkflow WorkflowService.getDraftWorkflow(JiraServiceContext jiraServiceContext, String parentWorkflowName)
          Given a parentWorkflowName, this methods will retrieved the relevant draft workflow linked to that parent.
 JiraWorkflow DefaultWorkflowService.getWorkflow(JiraServiceContext jiraServiceContext, String name)
           
 JiraWorkflow WorkflowService.getWorkflow(JiraServiceContext jiraServiceContext, String name)
          Returns the workflow with the given name.
 

Methods in com.atlassian.jira.bc.workflow with parameters of type JiraWorkflow
 JiraWorkflow DefaultWorkflowService.copyWorkflow(JiraServiceContext jiraServiceContext, String clonedWorkflowName, String clonedWorkflowDescription, JiraWorkflow workflowToClone)
           
 JiraWorkflow WorkflowService.copyWorkflow(JiraServiceContext jiraServiceContext, String clonedWorkflowName, String clonedWorkflowDescription, JiraWorkflow workflowToClone)
          Clones and persists a new workflow with the name given.
 boolean DefaultWorkflowService.isStepOnDraftWithNoTransitionsOnParentWorkflow(JiraServiceContext jiraServiceContext, JiraWorkflow workflow, int stepId)
           
 boolean WorkflowService.isStepOnDraftWithNoTransitionsOnParentWorkflow(JiraServiceContext jiraServiceContext, JiraWorkflow workflow, int stepId)
          Given a draft workflow and a step Id, this method returns true, if the step does not have any transitions on the original workflow.
 void DefaultWorkflowService.updateWorkflow(JiraServiceContext jiraServiceContext, JiraWorkflow workflow)
           
 void WorkflowService.updateWorkflow(JiraServiceContext jiraServiceContext, JiraWorkflow workflow)
          Updates the workflow descriptor provided in the persistance mechanism implemented.
 void DefaultWorkflowService.updateWorkflowNameAndDescription(JiraServiceContext jiraServiceContext, JiraWorkflow currentWorkflow, String newName, String newDescription)
           
 void WorkflowService.updateWorkflowNameAndDescription(JiraServiceContext jiraServiceContext, JiraWorkflow currentWorkflow, String newName, String newDescription)
          Used to change the name and description of an existing worfklow with the given name.
 void DefaultWorkflowService.validateAddWorkflowTransitionToDraft(JiraServiceContext jiraServiceContext, JiraWorkflow newJiraWorkflow, int stepId)
           
 void WorkflowService.validateAddWorkflowTransitionToDraft(JiraServiceContext jiraServiceContext, JiraWorkflow newJiraworkflow, int stepId)
          Validates if a workflow transition can be added to a draft.
 void DefaultWorkflowService.validateUpdateWorkflowNameAndDescription(JiraServiceContext jiraServiceContext, JiraWorkflow currentWorkflow, String newWorkflowName)
           
 void WorkflowService.validateUpdateWorkflowNameAndDescription(JiraServiceContext jiraServiceContext, JiraWorkflow currentWorkflow, String newWorkflowName)
          Validates that the workflow with currentName can have its name and description changed to newWorkflowName and newDescription.
 

Uses of JiraWorkflow in com.atlassian.jira.bulkedit.operation
 

Methods in com.atlassian.jira.bulkedit.operation that return JiraWorkflow
 JiraWorkflow BulkMoveOperationImpl.getWorkflowForType(Long projectId, String issueTypeId)
           
 

Uses of JiraWorkflow in com.atlassian.jira.config.managedconfiguration
 

Methods in com.atlassian.jira.config.managedconfiguration with parameters of type JiraWorkflow
 ManagedConfigurationItem DefaultManagedConfigurationItemService.getManagedWorkflow(JiraWorkflow workflow)
           
 ManagedConfigurationItem ManagedConfigurationItemService.getManagedWorkflow(JiraWorkflow workflow)
          Given the JiraWorkflow, attempt to retrieve the ManagedConfigurationItem that describes it.
 

Uses of JiraWorkflow in com.atlassian.jira.dev.backdoor
 

Constructors in com.atlassian.jira.dev.backdoor with parameters of type JiraWorkflow
WorkflowResourceExt.AssignableWorkflow(JiraWorkflow workflow)
           
 

Uses of JiraWorkflow in com.atlassian.jira.event
 

Methods in com.atlassian.jira.event that return JiraWorkflow
 JiraWorkflow WorkflowCopiedEvent.getNewWorkflow()
           
 JiraWorkflow DraftWorkflowPublishedEvent.getOriginalWorkflow()
           
 JiraWorkflow WorkflowUpdatedEvent.getOriginalWorkflow()
           
 JiraWorkflow WorkflowCopiedEvent.getOriginalWorkflow()
           
 JiraWorkflow AbstractWorkflowEvent.getWorkflow()
           
 

Constructors in com.atlassian.jira.event with parameters of type JiraWorkflow
AbstractWorkflowEvent(JiraWorkflow workflow)
           
DraftWorkflowCreatedEvent(JiraWorkflow workflow)
           
DraftWorkflowDeletedEvent(JiraWorkflow workflow)
           
DraftWorkflowPublishedEvent(JiraWorkflow workflow, JiraWorkflow originalWorkflow)
           
WorkflowCopiedEvent(JiraWorkflow originalWorkflow, JiraWorkflow newWorkflow)
           
WorkflowCreatedEvent(JiraWorkflow workflow)
           
WorkflowDeletedEvent(JiraWorkflow workflow)
           
WorkflowImportedFromXmlEvent(JiraWorkflow workflow)
           
WorkflowRenamedEvent(JiraWorkflow workflow, String oldWorkflowName, String newWorkflowName)
           
WorkflowUpdatedEvent(JiraWorkflow workflow, JiraWorkflow originalWorkflow)
           
 

Uses of JiraWorkflow in com.atlassian.jira.issue.status.category
 

Methods in com.atlassian.jira.issue.status.category with parameters of type JiraWorkflow
 Map<String,StatusCategory> StatusCategoryMapper.mapCategoriesToStatuses(JiraWorkflow workflow)
          Scan a JIRA workflow, determine what status category each status should belong to.
 

Uses of JiraWorkflow in com.atlassian.jira.mock.workflow
 

Classes in com.atlassian.jira.mock.workflow that implement JiraWorkflow
 class MockXmlLoadableJiraWorkflow
          Deprecated. use MockJiraWorkflow, or Mockito mocks in your tests. Unless you really really think you need to load your workflow from XML file. In which case still use the above alternatives.
 

Uses of JiraWorkflow in com.atlassian.jira.web.action.admin.issuefields.screens
 

Methods in com.atlassian.jira.web.action.admin.issuefields.screens that return types with arguments of type JiraWorkflow
 Map<JiraWorkflow,Collection<com.opensymphony.workflow.loader.ActionDescriptor>> ViewFieldScreens.getWorkflows(FieldScreen fieldScreen)
           
 

Uses of JiraWorkflow in com.atlassian.jira.web.action.admin.statuses
 

Fields in com.atlassian.jira.web.action.admin.statuses with type parameters of type JiraWorkflow
static com.google.common.base.Function<JiraWorkflow,String> ViewStatuses.GET_WORKFLOW_NAME
           
 

Methods in com.atlassian.jira.web.action.admin.statuses that return types with arguments of type JiraWorkflow
static com.google.common.base.Predicate<JiraWorkflow> ViewStatuses.containsStatus(Status status)
           
 

Constructor parameters in com.atlassian.jira.web.action.admin.statuses with type arguments of type JiraWorkflow
ViewStatuses.SimpleStatusMap(Status status, List<JiraWorkflow> workflows)
           
 

Uses of JiraWorkflow in com.atlassian.jira.web.action.admin.workflow
 

Fields in com.atlassian.jira.web.action.admin.workflow declared as JiraWorkflow
protected  JiraWorkflow AbstractWorkflowAction.workflow
           
 

Methods in com.atlassian.jira.web.action.admin.workflow that return JiraWorkflow
 JiraWorkflow ListWorkflows.getDraftFor(String workflowName)
           
 JiraWorkflow AbstractWorkflowStep.getWorkflow()
           
 JiraWorkflow CloneWorkflow.getWorkflow()
           
 JiraWorkflow DeleteWorkflowTransitions.getWorkflow()
           
 JiraWorkflow AbstractWorkflowDraftResultAction.getWorkflow()
           
 JiraWorkflow ViewWorkflowXml.getWorkflow()
           
 JiraWorkflow ListWorkflows.getWorkflow()
           
 JiraWorkflow AbstractWorkflowTransitionAction.getWorkflow()
           
 JiraWorkflow AbstractWorkflowAction.getWorkflow()
           
 JiraWorkflow DeleteWorkflowStep.getWorkflow()
           
 JiraWorkflow EditWorkflow.getWorkflow()
           
 JiraWorkflow AbstractWorkflowTransition.getWorkflow()
           
 

Methods in com.atlassian.jira.web.action.admin.workflow that return types with arguments of type JiraWorkflow
 List<JiraWorkflow> ListWorkflows.getActiveWorkflows()
           
 List<JiraWorkflow> ListWorkflows.getInactiveWorkflows()
           
 Collection<JiraWorkflow> ListWorkflows.getWorkflows()
           
 

Methods in com.atlassian.jira.web.action.admin.workflow with parameters of type JiraWorkflow
 boolean ListWorkflows.getHasSchemesForWorkflowIncludingDrafts(JiraWorkflow workflow)
           
 String ListWorkflows.getLastModifiedDateForDraft(JiraWorkflow workflow)
           
 Collection ListWorkflows.getSchemesForWorkflow(JiraWorkflow workflow)
           
 boolean ListWorkflows.isParentWorkflowActive(JiraWorkflow workflow)
           
protected  void AbstractWorkflowDraftResultAction.setWorkflow(JiraWorkflow jiraWorkflow)
           
 

Constructors in com.atlassian.jira.web.action.admin.workflow with parameters of type JiraWorkflow
AbstractAddWorkflowTransitionDescriptor(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AbstractAddWorkflowTransitionDescriptor(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AbstractAddWorkflowTransitionDescriptorParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AbstractAddWorkflowTransitionDescriptorParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AbstractDeleteWorkflowTransitionDescriptor(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AbstractDeleteWorkflowTransitionDescriptor(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AbstractEditWorkflowTransitionDescriptorParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AbstractEditWorkflowTransitionDescriptorParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AbstractWorkflowAction(JiraWorkflow workflow)
           
AbstractWorkflowDraftResultAction(JiraWorkflow jiraWorkflow, ProjectService projectService)
           
AbstractWorkflowStep(JiraWorkflow workflow, ConstantsManager constantsManager, WorkflowService workflowService)
           
AbstractWorkflowTransition(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, WorkflowService workflowService)
           
AbstractWorkflowTransition(JiraWorkflow workflow, WorkflowService workflowService)
           
AbstractWorkflowTransitionAction(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AbstractWorkflowTransitionAction(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AddWorkflowTransition(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.atlassian.plugin.PluginAccessor pluginAccessor, FieldScreenManager fieldScreenManager, WorkflowService workflowService)
           
AddWorkflowTransitionCondition(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AddWorkflowTransitionCondition(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AddWorkflowTransitionConditionParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AddWorkflowTransitionConditionParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AddWorkflowTransitionFunctionParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AddWorkflowTransitionFunctionParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AddWorkflowTransitionPostFunction(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AddWorkflowTransitionPostFunction(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AddWorkflowTransitionValidator(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AddWorkflowTransitionValidator(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AddWorkflowTransitionValidatorParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
AddWorkflowTransitionValidatorParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
CloneWorkflow(JiraWorkflow workflow, WorkflowService workflowService, WorkflowCopyNameFactory workflowCopyNameFactory)
           
DeleteWorkflowStep(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, WorkflowService workflowService, ConstantsManager constantsManager)
           
DeleteWorkflowTransitionCondition(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
DeleteWorkflowTransitionCondition(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
DeleteWorkflowTransitionPostFunction(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
DeleteWorkflowTransitionPostFunction(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
DeleteWorkflowTransitions(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, WorkflowService workflowService)
           
DeleteWorkflowTransitionValidator(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
DeleteWorkflowTransitionValidator(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
EditWorkflow(JiraWorkflow jiraWorkflow, WorkflowService workflowService)
           
EditWorkflowStep(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, ConstantsManager constantsManager, WorkflowService workflowService)
           
EditWorkflowTransition(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor action, FieldScreenManager fieldScreenManager, WorkflowService workflowService)
           
EditWorkflowTransition(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor action, FieldScreenManager fieldScreenManager, WorkflowService workflowService)
           
EditWorkflowTransitionConditionParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
EditWorkflowTransitionConditionParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
EditWorkflowTransitionPostFunctionParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
EditWorkflowTransitionPostFunctionParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
EditWorkflowTransitionValidatorParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
EditWorkflowTransitionValidatorParams(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
PublishDraftWorkflow(WorkflowService workflowService, JiraWorkflow jiraWorkflow, WorkflowCopyNameFactory workflowCopyNameFactory, ProjectService projectService)
           
ViewWorkflowStep(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, ConstantsManager constantsManager, WorkflowService workflowService)
           
ViewWorkflowStepMetaAttributes(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, WorkflowPropertyEditor.WorkflowPropertyEditorFactory editor)
           
ViewWorkflowSteps(JiraWorkflow workflow, ConstantsManager constantsManager, WorkflowService workflowService, ComponentFactory factory)
           
ViewWorkflowTransition(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, ConstantsManager constantsManager, CollectionReorderer collectionReorderer, WorkflowService workflowService, WorkflowTransitionTabProvider workflowTransitionTabProvider, com.atlassian.event.api.EventPublisher eventPublisher)
           
ViewWorkflowTransition(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, ConstantsManager constantsManager, CollectionReorderer collectionReorderer, WorkflowService workflowService, WorkflowTransitionTabProvider workflowTransitionTabProvider, com.atlassian.event.api.EventPublisher eventPublisher)
           
ViewWorkflowTransitionConditionalResult(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
ViewWorkflowTransitionConditionalResult(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition, com.atlassian.plugin.PluginAccessor pluginAccessor, WorkflowService workflowService)
           
ViewWorkflowTransitionMetaAttributes(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor transition)
           
ViewWorkflowTransitionMetaAttributes(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor step, com.opensymphony.workflow.loader.ActionDescriptor transition)
           
ViewWorkflowXml(JiraWorkflow workflow)
           
 

Uses of JiraWorkflow in com.atlassian.jira.web.action.admin.workflow.scheme
 

Methods in com.atlassian.jira.web.action.admin.workflow.scheme that return JiraWorkflow
 JiraWorkflow SelectProjectWorkflowSchemeStep2.getExistingWorkflow(org.ofbiz.core.entity.GenericValue issueType)
           
 JiraWorkflow SelectProjectWorkflowSchemeStep2.getTargetWorkflow(org.ofbiz.core.entity.GenericValue issueType)
           
 

Uses of JiraWorkflow in com.atlassian.jira.web.action.admin.workflow.tabs
 

Methods in com.atlassian.jira.web.action.admin.workflow.tabs that return types with arguments of type JiraWorkflow
protected static com.atlassian.fugue.Option<JiraWorkflow> WorkflowTransitionContext.getWorkflow(Map<String,Object> context)
           
 

Uses of JiraWorkflow in com.atlassian.jira.web.action.issue
 

Methods in com.atlassian.jira.web.action.issue that return JiraWorkflow
 JiraWorkflow MoveIssue.getCurrentWorkflow()
           
 JiraWorkflow AbstractConvertIssue.getCurrentWorkflow()
          Utility method used by convertissuetosubtask-updateworkflow.jsp and convertissuetosubtask-confirm-part1.jsp
Retrieve and return current workflow for selected issue
 JiraWorkflow MoveIssue.getTargetWorkflow()
           
 JiraWorkflow AbstractConvertIssue.getTargetWorkflow()
          Utility method used by convertissuetosubtask-confirm.jsp and convertissuetosubtask-confirm-part1.jsp
Retrieve and return workflow for selected issue's project and new (target) issue type.
 JiraWorkflow MoveIssue.getWorkflowForType(Long projectId, String issueTypeId)
           
 

Methods in com.atlassian.jira.web.action.issue with parameters of type JiraWorkflow
protected  void MoveIssueConfirm.migrateIssueToWorkflow(org.ofbiz.core.entity.GenericValue issue, String oldIssueType, JiraWorkflow targetWorkflow, org.ofbiz.core.entity.GenericValue targetStatus)
          Migrate the specified issue to the specified workflow, specified status and target type.
 

Uses of JiraWorkflow in com.atlassian.jira.web.action.issue.bulkedit
 

Methods in com.atlassian.jira.web.action.issue.bulkedit that return JiraWorkflow
 JiraWorkflow BulkMove.getWorkflowForType(Long projectId, String issueTypeId)
           
 

Uses of JiraWorkflow in com.atlassian.jira.web.action.issue.enterprise
 

Methods in com.atlassian.jira.web.action.issue.enterprise that return JiraWorkflow
 JiraWorkflow MoveIssueUpdateWorkflow.getSubtaskTargetWorkflow(String subtaskIssueType)
          Get the "target workflow" for a subtask issue type.
 JiraWorkflow MoveIssueUpdateWorkflow.getSubTaskTargetWorkflow(String subTaskTypeID)
           
 JiraWorkflow MoveIssueUpdateWorkflow.getTaskCurrentWorkflow(org.ofbiz.core.entity.GenericValue taskType)
           
 JiraWorkflow MoveIssueUpdateWorkflow.getTaskTargetWorkflow(org.ofbiz.core.entity.GenericValue taskType)
           
 

Methods in com.atlassian.jira.web.action.issue.enterprise with parameters of type JiraWorkflow
 Collection MoveIssueUpdateWorkflow.getTasksByStatusWorkflowType(String statusId, JiraWorkflow workflow, String typeId)
           
 

Uses of JiraWorkflow in com.atlassian.jira.web.bean
 

Methods in com.atlassian.jira.web.bean that return JiraWorkflow
 JiraWorkflow BulkEditBeanImpl.getTargetWorkflow()
           
 JiraWorkflow BulkEditBean.getTargetWorkflow()
           
 JiraWorkflow BulkEditBeanImpl.getTargetWorkflowByType(String issueTypeId)
           
 JiraWorkflow BulkEditBean.getTargetWorkflowByType(String issueTypeId)
           
 

Uses of JiraWorkflow in com.atlassian.jira.web.component
 

Methods in com.atlassian.jira.web.component with parameters of type JiraWorkflow
 String WorkflowHeaderWebComponent.getHtml(JiraWorkflow jiraWorkflow, String helpPath)
           
 String WorkflowHeaderWebComponent.getHtml(JiraWorkflow jiraWorkflow, String helpPath, Long projectId)
           
 String WorkflowHeaderWebComponent.getLinksHtml(JiraWorkflow workflow, Long projectId, String viewMode, boolean editable)
           
 

Uses of JiraWorkflow in com.atlassian.jira.workflow
 

Classes in com.atlassian.jira.workflow that implement JiraWorkflow
 class AbstractJiraWorkflow
           
 class ConfigurableJiraWorkflow
           
 class DefaultJiraWorkflow
           
 class JiraDraftWorkflow
          This class represents an draft workflow, that is a copy of an active workflow that may be edited, (and eventually) be used to overwrite an active workflow.
 class MockJiraWorkflow
          New Mock for JiraWorkflow.
 

Fields in com.atlassian.jira.workflow with type parameters of type JiraWorkflow
static Comparator<JiraWorkflow> JiraWorkflowComparator.COMPARATOR
           
 

Methods in com.atlassian.jira.workflow that return JiraWorkflow
 JiraWorkflow OSWorkflowManager.copyWorkflow(ApplicationUser user, String clonedWorkflowName, String clonedWorkflowDescription, JiraWorkflow workflowToClone)
           
 JiraWorkflow WorkflowManager.copyWorkflow(ApplicationUser user, String clonedWorkflowName, String clonedWorkflowDescription, JiraWorkflow workflowToClone)
          Clones a workflow by creating a deep copy of the workflow provided.
 JiraWorkflow OSWorkflowManager.copyWorkflow(String username, String clonedWorkflowName, String clonedWorkflowDescription, JiraWorkflow workflowToClone)
           
 JiraWorkflow WorkflowManager.copyWorkflow(String username, String clonedWorkflowName, String clonedWorkflowDescription, JiraWorkflow workflowToClone)
          Deprecated. Use WorkflowManager.copyWorkflow(com.atlassian.jira.user.ApplicationUser, String, String, JiraWorkflow) instead. Since v6.0.
 JiraWorkflow OfBizDraftWorkflowStore.createDraftWorkflow(ApplicationUser author, JiraWorkflow parentWorkflow)
           
 JiraWorkflow DraftWorkflowStore.createDraftWorkflow(ApplicationUser author, JiraWorkflow parentWorkflow)
          Creates a temporary workflow linked back to the named active workflow by id.
 JiraWorkflow CachingDraftWorkflowStore.createDraftWorkflow(ApplicationUser author, JiraWorkflow parentWorkflow)
           
 JiraWorkflow OSWorkflowManager.createDraftWorkflow(ApplicationUser user, String parentWorkflowName)
           
 JiraWorkflow WorkflowManager.createDraftWorkflow(ApplicationUser user, String parentWorkflowName)
          This will create an draft workflow of the named active workflow.
 JiraWorkflow OSWorkflowManager.createDraftWorkflow(String username, String parentWorkflowName)
           
 JiraWorkflow WorkflowManager.createDraftWorkflow(String username, String parentWorkflowName)
          Deprecated. Use WorkflowManager.createDraftWorkflow(com.atlassian.jira.user.ApplicationUser, String) instead. Since v6.0.
 JiraWorkflow OSWorkflowManager.getDefaultWorkflow()
           
 JiraWorkflow WorkflowManager.getDefaultWorkflow()
           
 JiraWorkflow OfBizDraftWorkflowStore.getDraftWorkflow(String parentWorkflowName)
           
 JiraWorkflow DraftWorkflowStore.getDraftWorkflow(String parentWorkflowName)
          This will retrieve an draft workflow that is related to the named saved workflow.
 JiraWorkflow CachingDraftWorkflowStore.getDraftWorkflow(String parentWorkflowName)
           
 JiraWorkflow OSWorkflowManager.getDraftWorkflow(String parentWorkflowName)
           
 JiraWorkflow WorkflowManager.getDraftWorkflow(String parentWorkflowName)
          Retrieve a single draft workflow by name.
 JiraWorkflow OSWorkflowManager.getWorkflow(org.ofbiz.core.entity.GenericValue issue)
           
 JiraWorkflow WorkflowManager.getWorkflow(org.ofbiz.core.entity.GenericValue issue)
          Deprecated. Use WorkflowManager.getWorkflow(com.atlassian.jira.issue.Issue) instead. Since v6.2.
 JiraWorkflow OSWorkflowManager.getWorkflow(Issue issue)
           
 JiraWorkflow WorkflowManager.getWorkflow(Issue issue)
          Retrieve the workflow for a given issue.
 JiraWorkflow OSWorkflowManager.getWorkflow(Long projectId, String issueTypeId)
           
 JiraWorkflow WorkflowManager.getWorkflow(Long projectId, String issueTypeId)
          Retrieve the workflow for a given project - issue type pair.
 JiraWorkflow OSWorkflowManager.getWorkflow(String name)
           
 JiraWorkflow WorkflowManager.getWorkflow(String name)
          Retrieve a single workflow by name.
 JiraWorkflow OSWorkflowManager.getWorkflowClone(String name)
           
 JiraWorkflow WorkflowManager.getWorkflowClone(String name)
          This method returns a JiraWorkflow, that contains a WorkflowDescriptor that is mutable.
protected  JiraWorkflow DefaultWorkflowSchemeManager.getWorkflowFromScheme(org.ofbiz.core.entity.GenericValue workflowScheme, String issueTypeId)
           
 JiraWorkflow OSWorkflowManager.getWorkflowFromScheme(org.ofbiz.core.entity.GenericValue scheme, String issueTypeId)
           
 JiraWorkflow WorkflowManager.getWorkflowFromScheme(org.ofbiz.core.entity.GenericValue scheme, String issueTypeId)
          Return the workflow in a particular scheme for a given issue type.
 JiraWorkflow OSWorkflowManager.getWorkflowFromScheme(WorkflowScheme scheme, String issueTypeId)
           
 JiraWorkflow WorkflowManager.getWorkflowFromScheme(WorkflowScheme scheme, String issueTypeId)
          Return the workflow in a particular scheme for a given issue type.
 JiraWorkflow OfBizDraftWorkflowStore.updateDraftWorkflow(ApplicationUser user, String parentWorkflowName, JiraWorkflow workflow)
           
 JiraWorkflow DraftWorkflowStore.updateDraftWorkflow(ApplicationUser user, String parentWorkflowName, JiraWorkflow workflow)
          Updates a temporary workflow with the one provided for the parent workflow name passed in.
 JiraWorkflow CachingDraftWorkflowStore.updateDraftWorkflow(ApplicationUser user, String parentWorkflowName, JiraWorkflow workflow)
           
 JiraWorkflow OfBizDraftWorkflowStore.updateDraftWorkflowWithoutAudit(String parentWorkflowName, JiraWorkflow workflow)
           
 JiraWorkflow DraftWorkflowStore.updateDraftWorkflowWithoutAudit(String parentWorkflowName, JiraWorkflow workflow)
          Updates a temporary workflow with the one provided for the parent workflow name passed in.
 JiraWorkflow CachingDraftWorkflowStore.updateDraftWorkflowWithoutAudit(String parentWorkflowName, JiraWorkflow workflow)
           
 

Methods in com.atlassian.jira.workflow that return types with arguments of type JiraWorkflow
 Collection<JiraWorkflow> OSWorkflowManager.getActiveWorkflows()
           
 Collection<JiraWorkflow> WorkflowManager.getActiveWorkflows()
          Retrieve all currently active workflows.
 Collection<JiraWorkflow> OSWorkflowManager.getWorkflows()
          Retrieve all of the workflows in the system
 Collection<JiraWorkflow> WorkflowManager.getWorkflows()
          Retrieve all of the workflows in the system
 Collection<JiraWorkflow> OSWorkflowManager.getWorkflowsFromScheme(org.ofbiz.core.entity.GenericValue scheme)
           
 Collection<JiraWorkflow> WorkflowManager.getWorkflowsFromScheme(org.ofbiz.core.entity.GenericValue workflowScheme)
          Deprecated. Since 5.0. Use WorkflowManager.getWorkflowsFromScheme(com.atlassian.jira.scheme.Scheme) instead.
 Iterable<JiraWorkflow> OSWorkflowManager.getWorkflowsFromScheme(Scheme workflowScheme)
           
 Iterable<JiraWorkflow> WorkflowManager.getWorkflowsFromScheme(Scheme workflowScheme)
          Returns all workflows for a given scheme.
 List<JiraWorkflow> OSWorkflowManager.getWorkflowsIncludingDrafts()
           
 List<JiraWorkflow> WorkflowManager.getWorkflowsIncludingDrafts()
          Retrieve all of the workflows in the system including drafts.
 

Methods in com.atlassian.jira.workflow with parameters of type JiraWorkflow
 int JiraWorkflowComparator.compare(JiraWorkflow workflow1, JiraWorkflow workflow2)
          The natural order of JiraWorkflow objects should be: 1) All instances of DefaultJiraWorkflow (sorted alphabetically ignoring case); followed by 2) all other instances of JiraWorkflow (also sorted alphabetically ignoring case).
 int MockJiraWorkflow.compareTo(JiraWorkflow o)
           
 int AbstractJiraWorkflow.compareTo(JiraWorkflow o)
           
 JiraWorkflow OSWorkflowManager.copyWorkflow(ApplicationUser user, String clonedWorkflowName, String clonedWorkflowDescription, JiraWorkflow workflowToClone)
           
 JiraWorkflow WorkflowManager.copyWorkflow(ApplicationUser user, String clonedWorkflowName, String clonedWorkflowDescription, JiraWorkflow workflowToClone)
          Clones a workflow by creating a deep copy of the workflow provided.
 JiraWorkflow OSWorkflowManager.copyWorkflow(String username, String clonedWorkflowName, String clonedWorkflowDescription, JiraWorkflow workflowToClone)
           
 JiraWorkflow WorkflowManager.copyWorkflow(String username, String clonedWorkflowName, String clonedWorkflowDescription, JiraWorkflow workflowToClone)
          Deprecated. Use WorkflowManager.copyWorkflow(com.atlassian.jira.user.ApplicationUser, String, String, JiraWorkflow) instead. Since v6.0.
 JiraWorkflow OfBizDraftWorkflowStore.createDraftWorkflow(ApplicationUser author, JiraWorkflow parentWorkflow)
           
 JiraWorkflow DraftWorkflowStore.createDraftWorkflow(ApplicationUser author, JiraWorkflow parentWorkflow)
          Creates a temporary workflow linked back to the named active workflow by id.
 JiraWorkflow CachingDraftWorkflowStore.createDraftWorkflow(ApplicationUser author, JiraWorkflow parentWorkflow)
           
 void OSWorkflowManager.createWorkflow(ApplicationUser user, JiraWorkflow workflow)
           
 void WorkflowManager.createWorkflow(ApplicationUser user, JiraWorkflow workflow)
           
 void OSWorkflowManager.createWorkflow(String username, JiraWorkflow workflow)
           
 void WorkflowManager.createWorkflow(String username, JiraWorkflow workflow)
          Deprecated. Use WorkflowManager.createWorkflow(com.atlassian.jira.user.ApplicationUser, JiraWorkflow) instead. Since v6.0.
 void OSWorkflowManager.createWorkflow(com.atlassian.crowd.embedded.api.User creator, JiraWorkflow workflow)
           
 void WorkflowManager.createWorkflow(com.atlassian.crowd.embedded.api.User user, JiraWorkflow workflow)
          Deprecated. Use WorkflowManager.createWorkflow(com.atlassian.jira.user.ApplicationUser, JiraWorkflow) instead. Since v6.0.
 void OSWorkflowManager.deleteWorkflow(JiraWorkflow workflow)
           
 void WorkflowManager.deleteWorkflow(JiraWorkflow workflow)
           
 Map<com.opensymphony.workflow.loader.ActionDescriptor,Collection<com.opensymphony.workflow.loader.FunctionDescriptor>> OSWorkflowManager.getPostFunctionsForWorkflow(JiraWorkflow workflow)
           
 Map<com.opensymphony.workflow.loader.ActionDescriptor,Collection<com.opensymphony.workflow.loader.FunctionDescriptor>> WorkflowManager.getPostFunctionsForWorkflow(JiraWorkflow workflow)
          Retrieve a map: actions -> post functions for a workflow.
 Collection<org.ofbiz.core.entity.GenericValue> DefaultWorkflowSchemeManager.getSchemesForWorkflow(JiraWorkflow workflow)
           
 Collection<org.ofbiz.core.entity.GenericValue> WorkflowSchemeManager.getSchemesForWorkflow(JiraWorkflow workflow)
          Returns all workflow schemes that the passed workflow is assigned to, not including draft schemes.
 Iterable<WorkflowScheme> DefaultWorkflowSchemeManager.getSchemesForWorkflowIncludingDrafts(JiraWorkflow workflow)
           
 Iterable<WorkflowScheme> WorkflowSchemeManager.getSchemesForWorkflowIncludingDrafts(JiraWorkflow workflow)
          Returns all workflow schemes that the passed workflow is assigned to, including draft schemes.
 Iterable<DraftWorkflowSchemeStore.DraftState> MockDraftWorkflowSchemeStore.getSchemesUsingWorkflow(JiraWorkflow jiraWorkflow)
           
 Iterable<AssignableWorkflowSchemeStore.AssignableState> MockAssignableWorkflowSchemeStore.getSchemesUsingWorkflow(JiraWorkflow jiraWorkflow)
           
 Iterable<AssignableWorkflowSchemeStore.AssignableState> OfBizAssignableWorkflowSchemeStore.getSchemesUsingWorkflow(JiraWorkflow jiraWorkflow)
           
 Iterable<DraftWorkflowSchemeStore.DraftState> OfBizDraftWorkflowSchemeStore.getSchemesUsingWorkflow(JiraWorkflow workflow)
           
static String WorkflowUtil.getWorkflowDisplayName(JiraWorkflow workflow)
          Appends "(Draft)" to the end of the workflow name for an draft workflow.
 boolean OSWorkflowManager.isActive(JiraWorkflow workflow)
           
 boolean WorkflowManager.isActive(JiraWorkflow workflow)
          Determine whether or not a given workflow is active in the system.
 boolean OSWorkflowManager.isSystemWorkflow(JiraWorkflow workflow)
           
 boolean WorkflowManager.isSystemWorkflow(JiraWorkflow workflow)
          Determine whether or not a given workflow is a system workflow.
 void OSWorkflowManager.migrateIssueToWorkflow(org.ofbiz.core.entity.GenericValue issue, JiraWorkflow newWorkflow, org.ofbiz.core.entity.GenericValue newStatus)
           
 void WorkflowManager.migrateIssueToWorkflow(org.ofbiz.core.entity.GenericValue issue, JiraWorkflow newWorkflow, org.ofbiz.core.entity.GenericValue status)
          Deprecated. Please use WorkflowManager.migrateIssueToWorkflow(com.atlassian.jira.issue.MutableIssue,JiraWorkflow,com.atlassian.jira.issue.status.Status). Since: 3.9.
 void OSWorkflowManager.migrateIssueToWorkflow(MutableIssue issue, JiraWorkflow newWorkflow, Status status)
          Migrates given issue to new workflow and sets new status on it.
 void WorkflowManager.migrateIssueToWorkflow(MutableIssue issue, JiraWorkflow newWorkflow, Status status)
          Migrates given issue to new workflow and sets new status on it.
 boolean OSWorkflowManager.migrateIssueToWorkflowNoReindex(org.ofbiz.core.entity.GenericValue issue, JiraWorkflow newWorkflow, org.ofbiz.core.entity.GenericValue newStatus)
           
 boolean WorkflowManager.migrateIssueToWorkflowNoReindex(org.ofbiz.core.entity.GenericValue issue, JiraWorkflow newWorkflow, org.ofbiz.core.entity.GenericValue status)
          Migrates given issue to new workflow and sets new status on it.
 void OSWorkflowManager.saveWorkflowWithoutAudit(JiraWorkflow workflow)
           
 void WorkflowManager.saveWorkflowWithoutAudit(JiraWorkflow workflow)
          This method will save the workflow and it will not affect the updatedDate and updatedAuthorName meta attributes of the workflow.
 WorkflowPropertyEditor DefaultWorkflowPropertyEditor.DefaultWorkflowPropertyEditorFactory.stepPropertyEditor(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor descriptor)
           
 WorkflowPropertyEditor WorkflowPropertyEditor.WorkflowPropertyEditorFactory.stepPropertyEditor(JiraWorkflow workflow, com.opensymphony.workflow.loader.StepDescriptor descriptor)
          Create a property editor for the step on the passed workflow.
 WorkflowPropertyEditor DefaultWorkflowPropertyEditor.DefaultWorkflowPropertyEditorFactory.transitionPropertyEditor(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor descriptor)
           
 WorkflowPropertyEditor WorkflowPropertyEditor.WorkflowPropertyEditorFactory.transitionPropertyEditor(JiraWorkflow workflow, com.opensymphony.workflow.loader.ActionDescriptor descriptor)
          Create a property editor for the transition on the passed workflow.
 JiraWorkflow OfBizDraftWorkflowStore.updateDraftWorkflow(ApplicationUser user, String parentWorkflowName, JiraWorkflow workflow)
           
 JiraWorkflow DraftWorkflowStore.updateDraftWorkflow(ApplicationUser user, String parentWorkflowName, JiraWorkflow workflow)
          Updates a temporary workflow with the one provided for the parent workflow name passed in.
 JiraWorkflow CachingDraftWorkflowStore.updateDraftWorkflow(ApplicationUser user, String parentWorkflowName, JiraWorkflow workflow)
           
 JiraWorkflow OfBizDraftWorkflowStore.updateDraftWorkflowWithoutAudit(String parentWorkflowName, JiraWorkflow workflow)
           
 JiraWorkflow DraftWorkflowStore.updateDraftWorkflowWithoutAudit(String parentWorkflowName, JiraWorkflow workflow)
          Updates a temporary workflow with the one provided for the parent workflow name passed in.
 JiraWorkflow CachingDraftWorkflowStore.updateDraftWorkflowWithoutAudit(String parentWorkflowName, JiraWorkflow workflow)
           
 void OSWorkflowManager.updateWorkflow(ApplicationUser user, JiraWorkflow workflow)
           
 void WorkflowManager.updateWorkflow(ApplicationUser user, JiraWorkflow workflow)
          Saves the given JiraWorkflow, which may be either a "live" or "draft" version.
 void OSWorkflowManager.updateWorkflow(String username, JiraWorkflow workflow)
           
 void WorkflowManager.updateWorkflow(String username, JiraWorkflow workflow)
          Deprecated. Use WorkflowManager.updateWorkflow(com.atlassian.jira.user.ApplicationUser, JiraWorkflow) instead. Since v6.0.
 void OSWorkflowManager.updateWorkflowNameAndDescription(ApplicationUser user, JiraWorkflow currentWorkflow, String newName, String newDescription)
           
 void WorkflowManager.updateWorkflowNameAndDescription(ApplicationUser user, JiraWorkflow currentWorkflow, String newName, String newDescription)
          Used to change the name and description of an existing worfklow with the given name.
 void OSWorkflowManager.updateWorkflowNameAndDescription(String username, JiraWorkflow currentWorkflow, String newName, String newDescription)
           
 void WorkflowManager.updateWorkflowNameAndDescription(String username, JiraWorkflow currentWorkflow, String newName, String newDescription)
          Deprecated. Use WorkflowManager.updateWorkflowNameAndDescription(com.atlassian.jira.user.ApplicationUser, JiraWorkflow, String, String) instead. Since v6.0.
 

Method parameters in com.atlassian.jira.workflow with type arguments of type JiraWorkflow
 void OSWorkflowManager.copyAndDeleteDraftsForInactiveWorkflowsIn(com.atlassian.crowd.embedded.api.User user, Iterable<JiraWorkflow> workflows)
           
 void WorkflowManager.copyAndDeleteDraftsForInactiveWorkflowsIn(com.atlassian.crowd.embedded.api.User user, Iterable<JiraWorkflow> workflows)
          Provided a set of workflows, this method will check, if the passed in inactive workflows have any drafts linked to them.
 void OSWorkflowManager.copyAndDeleteDraftWorkflows(com.atlassian.crowd.embedded.api.User user, Set<JiraWorkflow> workflows)
           
 void WorkflowManager.copyAndDeleteDraftWorkflows(com.atlassian.crowd.embedded.api.User user, Set<JiraWorkflow> workflows)
          Deprecated. Since 5.1. This method should not be used directly by external developers as it is an operation that only makes sense in the context of a higher level operation in JIRA (i.e. project removal / changing the workflow scheme of a given project). Please use the API calls for these higher level operations instead.
 

Uses of JiraWorkflow in com.atlassian.jira.workflow.tabs
 

Methods in com.atlassian.jira.workflow.tabs with parameters of type JiraWorkflow
 String WorkflowTransitionTabProvider.getTabContentHtml(String panelKey, com.opensymphony.workflow.loader.ActionDescriptor action, JiraWorkflow workflow)
           
 String WebPanelWorkflowTransitionTabProvider.getTabContentHtml(String panelKey, com.opensymphony.workflow.loader.ActionDescriptor action, JiraWorkflow workflow)
           
 Iterable<WorkflowTransitionTabProvider.WorkflowTransitionTab> WorkflowTransitionTabProvider.getTabs(com.opensymphony.workflow.loader.ActionDescriptor action, JiraWorkflow workflow)
           
 Iterable<WorkflowTransitionTabProvider.WorkflowTransitionTab> WebPanelWorkflowTransitionTabProvider.getTabs(com.opensymphony.workflow.loader.ActionDescriptor action, JiraWorkflow workflow)
           
 



Copyright © 2002-2014 Atlassian. All Rights Reserved.