com.atlassian.jira.issue.fields.config.manager
Interface IssueTypeSchemeManager

All Known Implementing Classes:
IssueTypeSchemeManagerImpl

public interface IssueTypeSchemeManager

A manager to manage IssueType's unique set of circumstances. That is, it circumvents the scheme system by collpasing the scheme and config


Method Summary
 void addOptionToDefault(String id)
          Adds the option with the issue type id to the default issue type scheme
 FieldConfigScheme create(String schemeName, String schemeDescription, List optionIds)
           
 void deleteScheme(FieldConfigScheme configScheme)
           
 Collection getAllRelatedSchemes(String optionId)
          Gets all schemes that has the issue type as part of its options
 List<FieldConfigScheme> getAllSchemes()
           
 FieldConfigScheme getConfigScheme(org.ofbiz.core.entity.GenericValue project)
          Deprecated. Use of GenericValue is discouraged. Deprecated since: v4.0. Use getConfigScheme(Project) instead.
 FieldConfigScheme getConfigScheme(Project project)
          Returns a config scheme for a given project
 IssueType getDefaultIssueType(Project project)
          Returns the default IssueType object based on the passed in project.
 FieldConfigScheme getDefaultIssueTypeScheme()
          Returns the default global issue type, to which all issue types are added to
 IssueType getDefaultValue(FieldConfig config)
          Returns the IssueType object that is the default for thie configuration
 IssueType getDefaultValue(org.ofbiz.core.entity.GenericValue project)
          Deprecated. Use getDefaultIssueType(Project) instead. Since v5.2.
 IssueType getDefaultValue(Issue issue)
           
 Collection<IssueType> getIssueTypesForDefaultScheme()
          Return the collection of issue types associated with the default scheme.
 Collection<IssueType> getIssueTypesForProject(org.ofbiz.core.entity.GenericValue project)
          Deprecated. Use of GenericValue is discouraged. Deprecated since: 3.9. Use getIssueTypesForProject(Project) instead.
 Collection<IssueType> getIssueTypesForProject(Project project)
          Return the collection of issue types associated with this project
 Collection<IssueType> getNonSubTaskIssueTypesForProject(Project project)
          Return the collection of issue types other than sub-tasks associated with this project.
 Collection<IssueType> getSubTaskIssueTypesForProject(Project project)
          Return the collection of sub-task issue types associated with this project Join of the result of this method and getNonSubTaskIssueTypesForProject(com.atlassian.jira.project.Project) produces the same result as a call to getIssueTypesForProject(com.atlassian.jira.project.Project).
 boolean isDefaultIssueTypeScheme(FieldConfigScheme configScheme)
           
 void removeOptionFromAllSchemes(String optionId)
           
 void setDefaultValue(FieldConfig config, String optionId)
           
 FieldConfigScheme update(FieldConfigScheme configScheme, Collection optionIds)
           
 

Method Detail

create

FieldConfigScheme create(String schemeName,
                         String schemeDescription,
                         List optionIds)

update

FieldConfigScheme update(FieldConfigScheme configScheme,
                         Collection optionIds)

getDefaultIssueTypeScheme

FieldConfigScheme getDefaultIssueTypeScheme()
Returns the default global issue type, to which all issue types are added to

Returns:
FieldConfigScheme

isDefaultIssueTypeScheme

boolean isDefaultIssueTypeScheme(FieldConfigScheme configScheme)

addOptionToDefault

void addOptionToDefault(String id)
Adds the option with the issue type id to the default issue type scheme

Parameters:
id - issue type id

getAllRelatedSchemes

Collection getAllRelatedSchemes(String optionId)
Gets all schemes that has the issue type as part of its options

Parameters:
optionId - Issue type id being queried
Returns:
Collection of FieldConfigScheme objects

removeOptionFromAllSchemes

void removeOptionFromAllSchemes(String optionId)

deleteScheme

void deleteScheme(FieldConfigScheme configScheme)

getAllSchemes

List<FieldConfigScheme> getAllSchemes()

getDefaultValue

IssueType getDefaultValue(Issue issue)

getDefaultValue

IssueType getDefaultValue(FieldConfig config)
Returns the IssueType object that is the default for thie configuration

Parameters:
config -
Returns:
IssueType representing the default value of this config

setDefaultValue

void setDefaultValue(FieldConfig config,
                     String optionId)

getDefaultValue

IssueType getDefaultValue(org.ofbiz.core.entity.GenericValue project)
Deprecated. Use getDefaultIssueType(Project) instead. Since v5.2.

Returns the default IssueType object based on the passed in project.

Parameters:
project -
Returns:
IssueType or null if there is no default

getDefaultIssueType

IssueType getDefaultIssueType(Project project)
Returns the default IssueType object based on the passed in project.

Parameters:
project - the Project
Returns:
IssueType or null if there is no default

getConfigScheme

FieldConfigScheme getConfigScheme(org.ofbiz.core.entity.GenericValue project)
Deprecated. Use of GenericValue is discouraged. Deprecated since: v4.0. Use getConfigScheme(Project) instead.

Returns a config scheme for a given project

Parameters:
project -
Returns:
Relevent configscheme

getConfigScheme

FieldConfigScheme getConfigScheme(Project project)
Returns a config scheme for a given project

Parameters:
project -
Returns:
Relevent configscheme

getIssueTypesForProject

@Nonnull
@Deprecated
Collection<IssueType> getIssueTypesForProject(org.ofbiz.core.entity.GenericValue project)
Deprecated. Use of GenericValue is discouraged. Deprecated since: 3.9. Use getIssueTypesForProject(Project) instead.

Return the collection of issue types associated with this project

Parameters:
project - project generic value
Returns:
collection of issue type objects

getIssueTypesForProject

@Nonnull
Collection<IssueType> getIssueTypesForProject(Project project)
Return the collection of issue types associated with this project

Parameters:
project - project to return the issue types of
Returns:
collection of IssueType objects (possibly empty, never null).

getIssueTypesForDefaultScheme

@Nonnull
Collection<IssueType> getIssueTypesForDefaultScheme()
Return the collection of issue types associated with the default scheme.

Returns:
collection of IssueType objects (possibly empty, never null).

getSubTaskIssueTypesForProject

@Nonnull
Collection<IssueType> getSubTaskIssueTypesForProject(@Nonnull
                                                             Project project)
Return the collection of sub-task issue types associated with this project Join of the result of this method and getNonSubTaskIssueTypesForProject(com.atlassian.jira.project.Project) produces the same result as a call to getIssueTypesForProject(com.atlassian.jira.project.Project).

Parameters:
project - project to return the issue types of
Returns:
collection of IssueType objects (possibly empty, never null).

getNonSubTaskIssueTypesForProject

@Nonnull
Collection<IssueType> getNonSubTaskIssueTypesForProject(Project project)
Return the collection of issue types other than sub-tasks associated with this project. Join of the result of this method and getSubTaskIssueTypesForProject(com.atlassian.jira.project.Project) produces the same result as a call to getIssueTypesForProject(com.atlassian.jira.project.Project).

Parameters:
project - project to return the issue types of
Returns:
collection of IssueType objects


Copyright © 2002-2014 Atlassian. All Rights Reserved.