Class LabelsCFType
java.lang.Object
com.atlassian.jira.issue.customfields.impl.AbstractCustomFieldType<Set<Label>,Label>
com.atlassian.jira.issue.customfields.impl.LabelsCFType
- All Implemented Interfaces:
ProjectImportableCustomField
,ProjectImportableCustomFieldParser
,CustomFieldValueParser
,CustomFieldType<Set<Label>,
,Label> SortableCustomField<Set<Label>>
,ExportableCustomFieldType
,RestAwareCustomFieldType
,RestCustomFieldTypeOperations
public class LabelsCFType
extends AbstractCustomFieldType<Set<Label>,Label>
implements SortableCustomField<Set<Label>>, ProjectImportableCustomFieldParser, ProjectImportableCustomField, RestAwareCustomFieldType, RestCustomFieldTypeOperations, ExportableCustomFieldType
Labels Custom field
- Transport Object Type
Set
ofLabel
s- Singular Object Type
Label
- Database Storage Type
- Not stored with Custom Field Data @see
LabelManager.setLabels(ApplicationUser, Long, Long, Set, boolean, boolean)
- Since:
- v4.2
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class com.atlassian.jira.issue.customfields.impl.AbstractCustomFieldType
AbstractCustomFieldType.VisitorBase<X>
-
Field Summary
Fields inherited from interface com.atlassian.jira.issue.customfields.CustomFieldType
DEFAULT_VALUE_TYPE, RESOURCE_PREVIEW
Fields inherited from interface com.atlassian.jira.imports.project.parser.CustomFieldValueParser
CUSTOM_FIELD_VALUE_ENTITY_NAME
-
Constructor Summary
ConstructorsConstructorDescriptionLabelsCFType
(JiraAuthenticationContext authenticationContext, IssueManager issueManager, GenericConfigManager genericConfigManager, LabelUtil labelUtil, LabelManager labelManager, ProjectImportLabelFieldParser projectImportableCustomFieldParser, JiraBaseUrls jiraBaseUrls) -
Method Summary
Modifier and TypeMethodDescriptionint
compare
(Set<Label> customFieldObjectValue1, Set<Label> customFieldObjectValue2, FieldConfig fieldConfig) Compares the two custom field objects.void
createValue
(CustomField field, Issue issue, Set<Label> value) Save the value for this Custom Field in a particular issue to the database.getChangelogValue
(CustomField field, Set<Label> value) Returns a values to be stored in the change log, example is the id of the changed item.getDefaultValue
(FieldConfig fieldConfig) Retrieves the Object representing the default CustomField value for the Custom Field.The table name of the ofbiz entity (read database table) in which the custom field values for this custom field type are persistedgetEntityRepresentation
(ExternalCustomFieldValue customFieldValue) Gets an EntityRepresentation that contains the correct attributes based on the populated fields in the provided custom field value.getFieldTypeInfo
(FieldTypeInfoContext fieldTypeInfoContext) Returns lower level Information about the field.getJsonDefaultValue
(IssueContext issueCtx, CustomField field) Return The default data for this system field.getJsonFromIssue
(CustomField field, Issue issue, boolean renderedVersionRequested, FieldLayoutItem fieldLayoutItem) Return a JsonData representation of the field valuegetJsonSchema
(CustomField customField) Return a description of the shape of this field when represented as JSON.Returns an instance ofNonNullCustomFieldProvider
that Jira will use to optimize indexing performance.Returns the object that will perform the actual project import functions for the custom field type.getRepresentationFromIssue
(Issue issue, CustomFieldExportContext context) Get the custom field representation of the issue, this object contains the column headers and values for each of theFieldExportPart
.getRestFieldOperation
(CustomField field) Returns the RestFieldOperationsHandler for this field.getSingularObjectFromString
(String string) Returns a Singular Object, given the string value as passed by the presentation tier.getStringFromSingularObject
(Label singularObject) Returns theString
representation of a single value within the CustomFieldType.getStringValueFromCustomFieldParams
(CustomFieldParams parameters) Return the String value object from the CustomFieldParams.getValueFromCustomFieldParams
(CustomFieldParams customFieldParams) Retrieves the Transport Object representing the CustomField value instance from the CustomFieldParams of Strings.getValueFromIssue
(CustomField field, Issue issue) Retrieves the Transport Object representing the current CustomField value for the given issue.getVelocityParameters
(Issue issue, CustomField field, FieldLayoutItem fieldLayoutItem) The custom field may wish to pass parameters to the velocity context beyond the getValueFromIssue methods (eg managers).Parses the custom field value data from the backup XML.remove
(CustomField field) Performs additional tasks when an entire CustomField of this type is being removedCustomField.remove()
.void
setDefaultValue
(FieldConfig fieldConfig, Set<Label> value) Sets the default value for a Custom Fieldvoid
updateValue
(CustomField field, Issue issue, Set<Label> value) Update the value for this Custom Field in a particular issue currently stored in the database.void
validateFromParams
(CustomFieldParams relevantParams, ErrorCollection errorCollectionToAddTo, FieldConfig config) Ensures that theCustomFieldParams
of Strings is a valid representation of the Custom Field values.boolean
valuesEqual
(Set<Label> oldLabels, Set<Label> newLabels) Used to compare 2 field values and work out whether a change item should be generatedMethods inherited from class com.atlassian.jira.issue.customfields.impl.AbstractCustomFieldType
assertObjectImplementsType, availableForBulkEdit, getChangelogString, getConfigurationItemTypes, getDescription, getDescriptor, getI18nBean, getKey, getName, getRelatedIndexers, getVelocityParameters, init, isRenderable
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.atlassian.jira.issue.customfields.CustomFieldType
areAllRequiredParametersPresent, getCloneOptionConfiguration, getCloneValue, isUserInputRequiredForMove
-
Constructor Details
-
LabelsCFType
public LabelsCFType(JiraAuthenticationContext authenticationContext, IssueManager issueManager, GenericConfigManager genericConfigManager, LabelUtil labelUtil, LabelManager labelManager, ProjectImportLabelFieldParser projectImportableCustomFieldParser, JiraBaseUrls jiraBaseUrls)
-
-
Method Details
-
getVelocityParameters
@Nonnull public Map<String,Object> getVelocityParameters(Issue issue, CustomField field, FieldLayoutItem fieldLayoutItem) Description copied from interface:CustomFieldType
The custom field may wish to pass parameters to the velocity context beyond the getValueFromIssue methods (eg managers).The values are added to the context for all velocity views (edit, search, view, xml)
- Specified by:
getVelocityParameters
in interfaceCustomFieldType<Set<Label>,
Label> - Overrides:
getVelocityParameters
in classAbstractCustomFieldType<Set<Label>,
Label> - Parameters:
issue
- The issue currently in context (Note: this will be null in cases like 'default value')field
- CustomFieldfieldLayoutItem
- FieldLayoutItem- Returns:
- A
Map
of parameters to add to the velocity context, or an empty Map otherwise (never null)
-
getValueFromIssue
Description copied from interface:CustomFieldType
Retrieves the Transport Object representing the current CustomField value for the given issue.- Specified by:
getValueFromIssue
in interfaceCustomFieldType<Set<Label>,
Label> - Parameters:
field
- Custom field for which to retrieve the valueissue
- Issue from which to retrieve the value- Returns:
- Transport Object matching the Object parameter of
CustomFieldType.createValue(com.atlassian.jira.issue.fields.CustomField, com.atlassian.jira.issue.Issue, T)
,CustomFieldType.updateValue(com.atlassian.jira.issue.fields.CustomField, com.atlassian.jira.issue.Issue, T)
-
getDefaultValue
Description copied from interface:CustomFieldType
Retrieves the Object representing the default CustomField value for the Custom Field.- Specified by:
getDefaultValue
in interfaceCustomFieldType<Set<Label>,
Label> - Parameters:
fieldConfig
- CustomField for default value- Returns:
- Transport Object of the Default Value
-
setDefaultValue
Description copied from interface:CustomFieldType
Sets the default value for a Custom Field- Specified by:
setDefaultValue
in interfaceCustomFieldType<Set<Label>,
Label> - Parameters:
fieldConfig
- CustomField for which the default is being storedvalue
- Transport Object representing the value instance of the CustomField
-
getChangelogValue
Description copied from interface:CustomFieldType
Returns a values to be stored in the change log, example is the id of the changed item.- Specified by:
getChangelogValue
in interfaceCustomFieldType<Set<Label>,
Label> - Parameters:
field
- CustomField that the value belongs tovalue
- Transport Object representing the value instance of the CustomField- Returns:
- Change log value.
-
getStringFromSingularObject
Description copied from interface:CustomFieldType
Returns theString
representation of a single value within the CustomFieldType. This is the value that is passed to the presentation tier for editing. For single CustomFieldTypes the Singular Object is the same as a Transport Object. However, for multi-dimensional CustomFieldTypes, the Singular Object is the Object contained within theCollection
orMap
- Specified by:
getStringFromSingularObject
in interfaceCustomFieldType<Set<Label>,
Label> - Parameters:
singularObject
- the object- Returns:
- String representation of the Object
-
getSingularObjectFromString
Description copied from interface:CustomFieldType
Returns a Singular Object, given the string value as passed by the presentation tier. Throws FieldValidationException if the string is an invalid representation of the Object.- Specified by:
getSingularObjectFromString
in interfaceCustomFieldType<Set<Label>,
Label> - Parameters:
string
- the String- Returns:
- singularObject instance
- Throws:
FieldValidationException
- if the string is an invalid representation of the Object.
-
remove
Description copied from interface:CustomFieldType
Performs additional tasks when an entire CustomField of this type is being removedCustomField.remove()
. This includes removal of values & options. -
validateFromParams
public void validateFromParams(CustomFieldParams relevantParams, ErrorCollection errorCollectionToAddTo, FieldConfig config) Description copied from interface:CustomFieldType
Ensures that theCustomFieldParams
of Strings is a valid representation of the Custom Field values. Any errors should be added to theErrorCollection
under the appropriate key as required.- Specified by:
validateFromParams
in interfaceCustomFieldType<Set<Label>,
Label> - Parameters:
relevantParams
- parameter object of StringserrorCollectionToAddTo
- errorCollection to which any errors should be added (never null)config
- FieldConfig
-
createValue
Description copied from interface:CustomFieldType
Save the value for this Custom Field in a particular issue to the database.- Specified by:
createValue
in interfaceCustomFieldType<Set<Label>,
Label> - Parameters:
field
-CustomField
for which the value is being storedissue
- TheIssue
to be stored against.value
- Transport Object representing the value instance of the CustomField. Can not benull
.
-
updateValue
Description copied from interface:CustomFieldType
Update the value for this Custom Field in a particular issue currently stored in the database.- Specified by:
updateValue
in interfaceCustomFieldType<Set<Label>,
Label> - Parameters:
field
-CustomField
for which the value is being storedissue
- TheIssue
to be stored against.value
- Transport Object representing the value instance of the CustomField.
-
getValueFromCustomFieldParams
public Set<Label> getValueFromCustomFieldParams(CustomFieldParams customFieldParams) throws FieldValidationException Description copied from interface:CustomFieldType
Retrieves the Transport Object representing the CustomField value instance from the CustomFieldParams of Strings.- Specified by:
getValueFromCustomFieldParams
in interfaceCustomFieldType<Set<Label>,
Label> - Parameters:
customFieldParams
- CustomFieldParams of String objects. Will contain one value for Singular field types.- Returns:
- Transport Object matching the Object parameter of
CustomFieldType.createValue(com.atlassian.jira.issue.fields.CustomField, com.atlassian.jira.issue.Issue, T)
,CustomFieldType.updateValue(com.atlassian.jira.issue.fields.CustomField, com.atlassian.jira.issue.Issue, T)
- Throws:
FieldValidationException
- if the String value fails to convert into Objects- See Also:
-
CustomFieldType.createValue(com.atlassian.jira.issue.fields.CustomField, com.atlassian.jira.issue.Issue, Object)
CustomFieldType.updateValue(com.atlassian.jira.issue.fields.CustomField, com.atlassian.jira.issue.Issue, Object)
CustomFieldType.getValueFromIssue(com.atlassian.jira.issue.fields.CustomField, com.atlassian.jira.issue.Issue)
-
getStringValueFromCustomFieldParams
Description copied from interface:CustomFieldType
Return the String value object from the CustomFieldParams. The object may be a single String (e.g. TextCFType, List of Strings (e.g. MultiSelectCFType) or CustomFieldParams of Strings (e.g. CascadingSelectCFType). Among other things these values are passed to Velocity for rendering edit screens.- Specified by:
getStringValueFromCustomFieldParams
in interfaceCustomFieldType<Set<Label>,
Label> - Parameters:
parameters
- - CustomFieldParams containing String values- Returns:
- String value object from the CustomFieldParams
-
compare
public int compare(@Nonnull Set<Label> customFieldObjectValue1, @Nonnull Set<Label> customFieldObjectValue2, FieldConfig fieldConfig) Description copied from interface:SortableCustomField
Compares the two custom field objects.- Specified by:
compare
in interfaceSortableCustomField<Set<Label>>
- Parameters:
customFieldObjectValue1
- Never nullcustomFieldObjectValue2
- Never null- Returns:
- 0, 1 or -1
-
getEntityName
Description copied from interface:ProjectImportableCustomFieldParser
The table name of the ofbiz entity (read database table) in which the custom field values for this custom field type are persisted- Specified by:
getEntityName
in interfaceProjectImportableCustomFieldParser
- Returns:
- The ofbiz table name for this custom field type
-
parse
Description copied from interface:CustomFieldValueParser
Parses the custom field value data from the backup XML.- Specified by:
parse
in interfaceCustomFieldValueParser
- Parameters:
attributes
- is a map of key value pairs that represent the attributes of an ExternalCustomFieldValue. The following attributes are required, otherwise a ParseException will be thrown:
- id (required)
- customfield (required)
- issue (required)
- Returns:
- an ExternalCustomFieldValue if the attributes contain the required fields
- Throws:
ParseException
- if the required fields are not found in the attributes map
-
getEntityRepresentation
Description copied from interface:CustomFieldValueParser
Gets an EntityRepresentation that contains the correct attributes based on the populated fields in the provided custom field value.- Specified by:
getEntityRepresentation
in interfaceCustomFieldValueParser
- Parameters:
customFieldValue
- contains the populated fields that will end up in the EntityRepresentations map- Returns:
- an EntityRepresentation that can be persisted using OfBiz
-
getProjectImporter
Description copied from interface:ProjectImportableCustomField
Returns the object that will perform the actual project import functions for the custom field type.- Specified by:
getProjectImporter
in interfaceProjectImportableCustomField
- Returns:
- the object that will perform the actual project import functions for the custom field type.
-
valuesEqual
Description copied from interface:CustomFieldType
Used to compare 2 field values and work out whether a change item should be generated- Specified by:
valuesEqual
in interfaceCustomFieldType<Set<Label>,
Label> - Overrides:
valuesEqual
in classAbstractCustomFieldType<Set<Label>,
Label> - Parameters:
oldLabels
- current valuenewLabels
- new value- Returns:
- true if the change item should be generated, false otherwise
-
getRepresentationFromIssue
Description copied from interface:ExportableCustomFieldType
Get the custom field representation of the issue, this object contains the column headers and values for each of theFieldExportPart
.- Specified by:
getRepresentationFromIssue
in interfaceExportableCustomFieldType
- Parameters:
issue
- to get the representation forcontext
- which contains information such as the i18nHelper and field- Returns:
- the exportable parts of this issue
-
accept
- Overrides:
accept
in classAbstractCustomFieldType<Set<Label>,
Label>
-
getFieldTypeInfo
Description copied from interface:RestAwareCustomFieldType
Returns lower level Information about the field. This information contains allowed values and/or the autocomplete url- Specified by:
getFieldTypeInfo
in interfaceRestAwareCustomFieldType
- Parameters:
fieldTypeInfoContext
- context information for generating theFieldTypeInfo
.- Returns:
- Low level information about the field.
-
getJsonSchema
Description copied from interface:RestAwareCustomFieldType
Return a description of the shape of this field when represented as JSON.- Specified by:
getJsonSchema
in interfaceRestAwareCustomFieldType
-
getJsonFromIssue
public FieldJsonRepresentation getJsonFromIssue(CustomField field, Issue issue, boolean renderedVersionRequested, @Nullable FieldLayoutItem fieldLayoutItem) Description copied from interface:RestAwareCustomFieldType
Return a JsonData representation of the field value- Specified by:
getJsonFromIssue
in interfaceRestAwareCustomFieldType
- Parameters:
field
- configuration of the current fieldissue
- to get field data fromrenderedVersionRequested
- whether the use requested the return of rendered/pretty data as well as raw datafieldLayoutItem
- field layout for this field.- Returns:
- FieldJsonDataPair containing a json representation of the raw data for this field, and if required, a json representation of the rendered data for easy display.
-
getRestFieldOperation
Description copied from interface:RestCustomFieldTypeOperations
Returns the RestFieldOperationsHandler for this field.- Specified by:
getRestFieldOperation
in interfaceRestCustomFieldTypeOperations
- Parameters:
field
- the Custom Field- Returns:
- the RestFieldOperationsHandler for this field.
-
getJsonDefaultValue
Description copied from interface:RestCustomFieldTypeOperations
Return The default data for this system field. May be null if there is no default.- Specified by:
getJsonDefaultValue
in interfaceRestCustomFieldTypeOperations
- Parameters:
issueCtx
- Issue (This should really only need to be an issue context, but for historical reasons we need an issue object.field
- the Custom Field- Returns:
- The default data for this system field.
-
getNonNullCustomFieldProvider
Description copied from interface:CustomFieldType
Returns an instance ofNonNullCustomFieldProvider
that Jira will use to optimize indexing performance.- Specified by:
getNonNullCustomFieldProvider
in interfaceCustomFieldType<Set<Label>,
Label>
-