com.atlassian.jira.issue.context
Interface IssueContext

All Known Subinterfaces:
Issue, JiraContextNode, MutableIssue
All Known Implementing Classes:
AbstractIssue, AbstractJiraContext, DocumentIssueImpl, GlobalIssueContext, IssueContextImpl, IssueImpl, LazyIssueContext, MockIssue, ProjectCategoryContext, ProjectContext, TemplateIssue

public interface IssueContext

A context (scope) for an issue or custom field. For example, global custom fields have an IssueContext whose project and issue type are null.


Method Summary
 org.ofbiz.core.entity.GenericValue getIssueType()
          Deprecated. Please use getIssueTypeObject(). Deprecated since v4.0
 IssueType getIssueTypeObject()
          Gets the IssueType for this IssueContext.
 org.ofbiz.core.entity.GenericValue getProject()
          Deprecated. Please use getProjectObject(). Deprecated since v4.0
 Project getProjectObject()
          Gets the Project for this IssueContext.
 

Method Detail

getProjectObject

Project getProjectObject()
Gets the Project for this IssueContext.

A null return value is used to represent that this context applies to all Projects.

Returns:
The Project for this IssueContext (can be null).

getProject

org.ofbiz.core.entity.GenericValue getProject()
Deprecated. Please use getProjectObject(). Deprecated since v4.0

Gets the Project for this IssueContext.

A null return value is used to represent that this context applies to all Projects.

Returns:
The Project for this IssueContext (can be null).

getIssueTypeObject

IssueType getIssueTypeObject()
Gets the IssueType for this IssueContext.

A null return value is used to represent that this context applies to all IssueTypes.

Returns:
The IssueType for this IssueContext (can be null).

getIssueType

org.ofbiz.core.entity.GenericValue getIssueType()
Deprecated. Please use getIssueTypeObject(). Deprecated since v4.0

Gets the IssueType for this IssueContext.

A null return value is used to represent that this context applies to all IssueTypes.

Returns:
The IssueType for this IssueContext (can be null).


Copyright © 2002-2011 Atlassian. All Rights Reserved.