public class

GenericTaskContext

extends Object
implements TaskContext
java.lang.Object
   ↳ com.atlassian.jira.task.GenericTaskContext

Class Overview

Generic context, could be used by other plugins outside JIRA to run in data center mode.

Summary

Public Constructors
GenericTaskContext(String progressURL, String taskContextName)
Public Methods
String buildProgressURL(Long taskId)
This factory method is called to build a progress URL so the TaskDescriptor can allow some one to navigate to the task's "web page".
boolean equals(Object obj)
String getTaskContextName()
int hashCode()
String toString()
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.jira.task.TaskContext

Public Constructors

public GenericTaskContext (String progressURL, String taskContextName)

Parameters
progressURL progress URL to be returned as-is by buildProgressURL(Long)
taskContextName this name should be unique between task submitters, to identify their task

Public Methods

public String buildProgressURL (Long taskId)

This factory method is called to build a progress URL so the TaskDescriptor can allow some one to navigate to the task's "web page". The URL should start with "/" and be ready for the servlet context path to be prepended.

Parameters
taskId - the id of the task. Since this is not known until task submission, this call back is informed of it once created.
Returns
  • returns a context specific progress URL that a user can go to to view the progress of a task.

public boolean equals (Object obj)

public String getTaskContextName ()

public int hashCode ()

public String toString ()