|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JiraWorkflow | |
|---|---|
| com.atlassian.jira.bc.workflow | |
| com.atlassian.jira.web.bean | |
| com.atlassian.jira.workflow | |
| Uses of JiraWorkflow in com.atlassian.jira.bc.workflow |
|---|
| Methods in com.atlassian.jira.bc.workflow that return JiraWorkflow | |
|---|---|
JiraWorkflow |
WorkflowService.copyWorkflow(JiraServiceContext jiraServiceContext,
String clonedWorkflowName,
String clonedWorkflowDescription,
JiraWorkflow workflowToClone)
Clones and persists a new workflow with the name given. |
JiraWorkflow |
WorkflowService.createDraftWorkflow(JiraServiceContext jiraServiceContext,
String parentWorkflowName)
Creates a copy of an active workflow for editing. |
JiraWorkflow |
WorkflowService.getDraftWorkflow(JiraServiceContext jiraServiceContext,
String parentWorkflowName)
Given a parentWorkflowName, this methods will retrieved the relevant draft workflow linked to that parent. |
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 |
WorkflowService.copyWorkflow(JiraServiceContext jiraServiceContext,
String clonedWorkflowName,
String clonedWorkflowDescription,
JiraWorkflow workflowToClone)
Clones and persists a new workflow with the name given. |
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 |
WorkflowService.updateWorkflow(JiraServiceContext jiraServiceContext,
JiraWorkflow workflow)
Updates the workflow descriptor provided in the persistance mechanism implemented. |
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 |
WorkflowService.validateAddWorkflowTransitionToDraft(JiraServiceContext jiraServiceContext,
JiraWorkflow newJiraworkflow,
int stepId)
Validates if a workflow transition can be added to a draft. |
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.web.bean |
|---|
| Methods in com.atlassian.jira.web.bean that return JiraWorkflow | |
|---|---|
abstract JiraWorkflow |
BulkEditBean.getTargetWorkflow()
|
abstract JiraWorkflow |
BulkEditBean.getTargetWorkflowByType(String issueTypeId)
|
| Uses of JiraWorkflow in com.atlassian.jira.workflow |
|---|
| Methods in com.atlassian.jira.workflow that return JiraWorkflow | |
|---|---|
JiraWorkflow |
WorkflowManager.copyWorkflow(String username,
String clonedWorkflowName,
String clonedWorkflowDescription,
JiraWorkflow workflowToClone)
Clones a workflow by creating a deep copy of the workflow provided. |
JiraWorkflow |
WorkflowManager.createDraftWorkflow(String username,
String parentWorkflowName)
This will create an draft workflow of the named active workflow. |
JiraWorkflow |
WorkflowManager.getDefaultWorkflow()
|
JiraWorkflow |
WorkflowManager.getDraftWorkflow(String parentWorkflowName)
Retrieve a single draft workflow by name. |
JiraWorkflow |
WorkflowManager.getWorkflow(org.ofbiz.core.entity.GenericValue issue)
Retrieve the workflow for a given issue. |
JiraWorkflow |
WorkflowManager.getWorkflow(Issue issue)
Retrieve the workflow for a given issue. |
JiraWorkflow |
WorkflowManager.getWorkflow(Long projectId,
String issueTypeId)
Retrieve the workflow for a given project - issue type pair. |
JiraWorkflow |
WorkflowManager.getWorkflow(String name)
Retrieve a single workflow by name. |
JiraWorkflow |
WorkflowManager.getWorkflowClone(String name)
This method returns a JiraWorkflow, that contains a WorkflowDescriptor
that is mutable. |
JiraWorkflow |
WorkflowManager.getWorkflowFromScheme(org.ofbiz.core.entity.GenericValue scheme,
String issueTypeId)
Return the workflow in a particular scheme for a given issue type. |
| Methods in com.atlassian.jira.workflow that return types with arguments of type JiraWorkflow | |
|---|---|
Collection<JiraWorkflow> |
WorkflowManager.getActiveWorkflows()
Retrieve all currently active workflows. |
Collection<JiraWorkflow> |
WorkflowManager.getWorkflows()
Retrieve all of the workflows in the system |
Collection<JiraWorkflow> |
WorkflowManager.getWorkflowsFromScheme(org.ofbiz.core.entity.GenericValue workflowScheme)
Returns all workflows for a given scheme |
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 | |
|---|---|
JiraWorkflow |
WorkflowManager.copyWorkflow(String username,
String clonedWorkflowName,
String clonedWorkflowDescription,
JiraWorkflow workflowToClone)
Clones a workflow by creating a deep copy of the workflow provided. |
void |
WorkflowManager.createWorkflow(String username,
JiraWorkflow workflow)
|
void |
WorkflowManager.createWorkflow(User user,
JiraWorkflow workflow)
|
void |
WorkflowManager.createWorkflow(com.atlassian.crowd.embedded.api.User user,
JiraWorkflow workflow)
|
void |
WorkflowManager.deleteWorkflow(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> |
WorkflowSchemeManager.getSchemesForWorkflow(JiraWorkflow workflow)
|
static String |
WorkflowUtil.getWorkflowDisplayName(JiraWorkflow workflow)
Appends "(Draft)" to the end of the workflow name for an draft workflow. |
boolean |
WorkflowManager.isActive(JiraWorkflow workflow)
Determine whether or not a given workflow is active in the system. |
boolean |
WorkflowManager.isSystemWorkflow(JiraWorkflow workflow)
Determine whether or not a given workflow is a system workflow. |
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 |
WorkflowManager.migrateIssueToWorkflow(MutableIssue issue,
JiraWorkflow newWorkflow,
Status status)
Migrates given issue to new workflow and sets new status on it. |
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. |
void |
WorkflowManager.updateWorkflow(String username,
JiraWorkflow workflow)
Saves the given JiraWorkflow, which may be either a "live" or "draft" version. |
void |
WorkflowManager.updateWorkflowNameAndDescription(String username,
JiraWorkflow currentWorkflow,
String newName,
String newDescription)
Used to change the name and description of an existing worfklow with the given name. |
| Method parameters in com.atlassian.jira.workflow with type arguments of type JiraWorkflow | |
|---|---|
void |
WorkflowManager.copyAndDeleteDraftWorkflows(User user,
Set<JiraWorkflow> workflows)
Provided a set of workflows, this method will check, if the passed in workflows have any draft workflows linked to them. |
void |
WorkflowManager.copyAndDeleteDraftWorkflows(com.atlassian.crowd.embedded.api.User user,
Set<JiraWorkflow> workflows)
Provided a set of workflows, this method will check, if the passed in workflows have any draft workflows linked to them. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||