public class ConfigurationContext extends Object
This entity is a mapping from a "FieldConfigScheme" to the list of Projects that are relevant to that FieldConfigScheme. A single entity with a null Project represents the "Global" context - any projects not explicitly listed in another context.
Note that there is also room here for a "ProjectCategory" context, but we don't actually expose this through the UI, and we should deprecate this ability in the API just in case some crazy plugin is using it.
Modifier and Type | Field and Description |
---|---|
static String |
FIELD_CONFIG_SCHEME_ID |
static String |
FIELD_ID
This field is called "customfield" in the DB and "key" in OfBiz Entity, but "Field ID" is what it actually stores.
|
static String |
ID |
static String |
PROJECT_CATEGORY_ID |
static String |
PROJECT_ID |
Constructor and Description |
---|
ConfigurationContext(Long id,
Long projectCategoryId,
Long projectId,
String fieldId,
Long fieldConfigSchemeId) |
Modifier and Type | Method and Description |
---|---|
Long |
getFieldConfigSchemeId() |
String |
getFieldId()
Returns the "fieldId" field which is actually called "customfield" in the DB and "key" in OfBiz Entity.
|
Long |
getId() |
Long |
getProjectCategoryId()
This database column was never populated through the GUI and is ignored from JIRA 7.0
|
Long |
getProjectId() |
public static final String ID
public static final String PROJECT_CATEGORY_ID
public static final String PROJECT_ID
public static final String FIELD_ID
public static final String FIELD_CONFIG_SCHEME_ID
public Long getId()
public Long getProjectCategoryId()
public Long getProjectId()
public String getFieldId()
It is in fact the Configurable Field ID eg "customfield_11002" or "issuetype", so we have given a more correct name here.
public Long getFieldConfigSchemeId()
Copyright © 2002-2019 Atlassian. All Rights Reserved.