Uses of Class
com.atlassian.jira.workflow.edit.Workflow
Packages that use Workflow
-
Uses of Workflow in com.atlassian.jira.workflow.edit
Methods in com.atlassian.jira.workflow.edit that return WorkflowModifier and TypeMethodDescriptionGet a clone of workflow.Workflows.getDraftWorkflow(String workflowName) Retrieves a draft workflow with the given name.WorkflowsImpl.getDraftWorkflow(String workflowName) Workflows.getMutableWorkflowWithoutValidation(String workflowName) Gets a mutable workflow with no validation applied to it.WorkflowsImpl.getMutableWorkflowWithoutValidation(String workflowName) Workflows.getWorkflow(boolean isDraft, String workflowName) Get the workflow specified by the supplied name in the state specified by isDraft.Workflows.getWorkflow(JiraWorkflow mutableWorkflow) ReturnsWorkflowfrom mutableJiraWorkflowWorkflowsImpl.getWorkflow(boolean isDraft, String workflowName) WorkflowsImpl.getWorkflow(JiraWorkflow jiraWorkflow) Methods in com.atlassian.jira.workflow.edit that return types with arguments of type WorkflowModifier and TypeMethodDescriptionWorkflow.addCommonTransition(String sourceStatusId, int transitionId) Add a common transition to the workflow.WorkflowTransitions.addCommonTransition(String sourceStatusId, int transitionId, String workflowName) Add a common transition to a workflow.WorkflowTransitionsImpl.addCommonTransition(String sourceStatusId, int transitionId, String workflowName) Workflow.addGlobalTransition(Workflow.AddTransitionParameters params) Add a global transition to this workflow.Add a status to the supplied workflow.WorkflowStatuses.addStatusAndGlobalTransitionToWorkflow(Status status, String workflowName) Add a status and a global transition to that status to a workflow.WorkflowStatusesImpl.addStatusAndGlobalTransitionToWorkflow(Status status, String workflowName) WorkflowStatuses.addStatusToWorkflow(Status status, String workflowName) Add a status to a workflow.WorkflowStatusesImpl.addStatusToWorkflow(Status status, String workflowName) WorkflowStatuses.createAndAddStatusToWorkflow(boolean createGlobalTransition, String description, String name, String statusCategoryId, String workflowName) Create a status and add it to a workflow.WorkflowStatusesImpl.createAndAddStatusToWorkflow(boolean createGlobalTransition, String description, String name, String statusCategoryId, String workflowName) WorkflowGlobalTransitions.createGlobalTransition(String statusId, String workflowName, String globalTransitionName, String globalTransitionDescription, Long screenId) Create a global transition to a specified status on a workflow.WorkflowGlobalTransitionsImpl.createGlobalTransition(String statusId, String workflowName, String globalTransitionName, String globalTransitionDescription, Long screenId) Workflow.deleteGlobalTransition(String globalTransitionId) Delete the global transition from the provided workflow.WorkflowGlobalTransitions.deleteGlobalTransition(String globalTransitionId, String workflowName) Delete the global transition in the specified workflow.WorkflowGlobalTransitionsImpl.deleteGlobalTransition(String globalTransitionId, String workflowName) Workflow.deleteLoopedTransition(int loopedTransitionId) Delete the looped transition from the provided workflow.WorkflowLoopedTransitions.deleteLoopedTransition(int loopedTransitionId, String workflowName) Delete the looped transition in the specified workflow.WorkflowLoopedTransitionsImpl.deleteLoopedTransition(int loopedTransitionId, String workflowName) Workflow.deleteTransition(int transitionId, int sourceStepId) Delete the transition represented by the supplied transition id, source step id.WorkflowTransitions.deleteTransition(int transitionId, int sourceStepId, String workflowName) Delete the transition represented by transition id on the specified workflow.WorkflowTransitionsImpl.deleteTransition(int transitionId, int sourceStepId, String workflowName) Workflows.getMutableWorkflow(String workflowName) Get a workflow that can be changed.WorkflowsImpl.getMutableWorkflow(String workflowName) Workflows.publishDraft(String parentWorkflowName) Publish a draft workflow.WorkflowsImpl.publishDraft(String parentWorkflowName) Workflow.removeStatus(@NotNull Status status) Remove a status from the provided workflow.Workflow.removeStatus(String statusId) Remove a status from the provided workflow.WorkflowStatuses.removeStatus(String statusId, String workflowName) Remove the status represented by the supplied status from the named workflow.WorkflowStatusesImpl.removeStatus(String statusId, String workflowName) Remove the status represented by the supplied status from the named workflow.Workflows.saveWorkflow(Workflow workflow) Save changes that have been made to a workflow and return aServiceOutcome.WorkflowsImpl.saveWorkflow(Workflow workflow) Workflow.updateGlobalTransition(int transitionId, String name, String description, FieldScreen screen) Update the global transition represented by the supplied transition id to have the supplied properties.WorkflowGlobalTransitions.updateGlobalTransition(int transitionId, String name, String description, Long screenId, String workflowName) Update the global transition identified by the specified transition id with the supplied properties.WorkflowGlobalTransitionsImpl.updateGlobalTransition(int transitionId, String name, String description, Long screenId, String workflowName) Workflow.updateLoopedTransition(int transitionId, String name, String description, FieldScreen screen) Update the looped transition represented by the supplied transition id to have the supplied properties.WorkflowLoopedTransitions.updateLoopedTransition(int transitionId, String name, String description, Long screenId, String workflowName) Update the global transition identified by the specified transition id with the supplied properties.WorkflowLoopedTransitionsImpl.updateLoopedTransition(int transitionId, String name, String description, Long screenId, String workflowName) Workflow.updateStatus(String statusId, String name) Update a status identified by the status id in the workflow.WorkflowStatuses.updateStatus(String description, String name, String statusCategoryId, String statusId, String workflowName) Update a status, setting its description, name, and status category.WorkflowStatusesImpl.updateStatus(String description, String name, String statusCategoryId, String statusId, String workflowName) Update a status, setting its description, name, and status category.Workflow.updateTransition(int transitionId, String name, String description, FieldScreen screen) Update the transition specified by the transitionId with the supplied parameters.WorkflowTransitions.updateTransition(int transitionId, String name, String description, Long screenId, int sourceStepId, String workflowName) Update an existing transition with the supplied properties on the named workflow.WorkflowTransitionsImpl.updateTransition(int transitionId, String name, String description, Long screenId, int sourceStepId, String workflowName) Workflow.updateTransitionSource(int transitionId, Status newSourceStatus, Status originalSourceStatus) Update the source of the transition specified by the transitionId.WorkflowTransitions.updateTransitionSource(int transitionId, String newSourceStatusId, String originalSourceStatusId, String workflowName) Update the source of an existing transition on the named workflow.WorkflowTransitionsImpl.updateTransitionSource(int transitionId, String newSourceStatusId, String originalSourceStatusId, String workflowName) Workflow.updateTransitionTarget(int transitionId, Status targetStatus) Update the target of the transition specified by the transitionId.WorkflowTransitions.updateTransitionTarget(int transitionId, String targetStatusId, String workflowName) Update the target of an existing transition on the named workflow.WorkflowTransitionsImpl.updateTransitionTarget(int transitionId, String targetStatusId, String workflowName) WorkflowGlobalTransitions.verifyGlobalTransitionCanBeUpdated(int transitionId, String name, String workflowName, Long screenId) WorkflowGlobalTransitionsImpl.verifyGlobalTransitionCanBeUpdated(int transitionId, String name, String workflowName, Long screenId) WorkflowLoopedTransitions.verifyLoopedTransitionCanBeAdded(String name, String workflowName, Long screenId) WorkflowLoopedTransitionsImpl.verifyLoopedTransitionCanBeAdded(String name, String workflowName, Long screenId) WorkflowLoopedTransitions.verifyLoopedTransitionCanBeUpdated(int transitionId, String name, String workflowName, Long screenId) WorkflowLoopedTransitionsImpl.verifyLoopedTransitionCanBeUpdated(int transitionId, String name, String workflowName, Long screenId) WorkflowStatuses.verifyStatusCanBeRemoved(@NotNull Status status, String workflowName) WorkflowStatuses.verifyStatusCanBeRemoved(String statusId, String workflowName) WorkflowStatusesImpl.verifyStatusCanBeRemoved(@NotNull Status status, String workflowName) WorkflowStatusesImpl.verifyStatusCanBeRemoved(String statusId, String workflowName) Methods in com.atlassian.jira.workflow.edit with parameters of type WorkflowModifier and TypeMethodDescriptionWorkflowGlobalTransitions.resolveUniqueGlobalTransitionName(Workflow workflow, String globalTransitionName) Checks if a global transition name conflict occurs, returns a generated unique name if it doesWorkflowGlobalTransitionsImpl.resolveUniqueGlobalTransitionName(Workflow workflow, String globalTransitionName) Workflows.saveWorkflow(Workflow workflow) Save changes that have been made to a workflow and return aServiceOutcome.WorkflowsImpl.saveWorkflow(Workflow workflow)