public class MultiSelectCFType extends AbstractMultiCFType<Option> implements MultipleSettableCustomFieldType<Collection<Option>,Option>, SortableCustomField<List<String>>, GroupSelectorField, ProjectImportableCustomField, RestAwareCustomFieldType, RestCustomFieldTypeOperations, ExportableCustomFieldType
| Modifier and Type | Class and Description |
|---|---|
static interface |
MultiSelectCFType.InputTextProvider
Support interface to delay the data input text evaluation to vm-processing time.
|
static interface |
MultiSelectCFType.Visitor<T> |
AbstractCustomFieldType.VisitorBase<X>| Modifier and Type | Field and Description |
|---|---|
static String |
COMMA_REPLACEMENT |
customFieldValuePersister, genericConfigManagerDEFAULT_VALUE_TYPE, RESOURCE_PREVIEW| Constructor and Description |
|---|
MultiSelectCFType(OptionsManager optionsManager,
CustomFieldValuePersister valuePersister,
GenericConfigManager genericConfigManager,
JiraBaseUrls jiraBaseUrls,
SearchService searchService,
FeatureManager featureManager,
JiraAuthenticationContext jiraAuthenticationContext) |
| Modifier and Type | Method and Description |
|---|---|
Object |
accept(AbstractCustomFieldType.VisitorBase visitor) |
int |
compare(List<String> customFieldObjectValue1,
List<String> customFieldObjectValue2,
FieldConfig fieldConfig)
Compares the two custom field objects.
|
protected Option |
convertDbValueToType(Object dbValue)
Converts a given db value to Single form of Transport Object
|
protected Object |
convertTypeToDbValue(Option value)
Converts a given underlying type to its db storage value.
|
static Collection<String> |
extractTransferObjectFromString(String value)
Parses the given comma-separated String value into a Collection.
|
String |
getChangelogString(CustomField field,
Collection<Option> value)
Returns a String of representing values to be stored in the change log, an example is the name of a version
field that a version id will resolve to within JIRA.
|
List<FieldConfigItemType> |
getConfigurationItemTypes()
Returns a List of
FieldConfigItemType objects. |
protected PersistenceFieldType |
getDatabaseType()
Type of database field needed to store this field.
|
Collection<Option> |
getDefaultValue(FieldConfig fieldConfig)
Retrieves the Object representing the default CustomField value for the Custom Field.
|
FieldTypeInfo |
getFieldTypeInfo(FieldTypeInfoContext fieldTypeInfoContext)
Returns lower level Information about the field.
|
Set<Long> |
getIssueIdsWithValue(CustomField field,
Option option)
Returns a Set of issue ids (
Long) that have the given option selected. |
JsonData |
getJsonDefaultValue(IssueContext issueCtx,
CustomField field)
Return The default data for this system field.
|
FieldJsonRepresentation |
getJsonFromIssue(CustomField field,
Issue issue,
boolean renderedVersionRequested,
FieldLayoutItem fieldLayoutItem)
Return a JsonData representation of the field value
|
JsonType |
getJsonSchema(CustomField customField)
Return a description of the shape of this field when represented as JSON.
|
Options |
getOptions(FieldConfig fieldConfig,
JiraContextNode jiraContextNode)
Returns all possible Options for this field.
|
ProjectCustomFieldImporter |
getProjectImporter()
Returns the object that will perform the actual project import functions for the custom field type.
|
org.apache.lucene.search.Query |
getQueryForGroup(String fieldID,
String groupName)
This method should be implemented in your custom type to return a Query.
|
FieldExportParts |
getRepresentationFromIssue(Issue issue,
CustomFieldExportContext context)
Get the custom field representation of the issue, this object contains the column headers and values for each
of the
FieldExportPart. |
RestFieldOperationsHandler |
getRestFieldOperation(CustomField field)
Returns the RestFieldOperationsHandler for this field.
|
Option |
getSingularObjectFromString(String string)
Returns a Singular Object, given the string value as passed by the presentation tier.
|
String |
getStringFromSingularObject(Option optionObject)
Returns the
String representation of a single value within the CustomFieldType. |
static String |
getStringFromTransferObject(Collection<String> collection)
Takes a Collection of values and creates a comma-separated String that represents this Collection.
|
Object |
getStringValueFromCustomFieldParams(CustomFieldParams parameters)
Return the String value object from the CustomFieldParams.
|
protected Comparator<Option> |
getTypeComparator()
Returns a comparator for underlying type of this custom field.
|
Collection<Option> |
getValueFromCustomFieldParams(CustomFieldParams parameters)
Retrieves the Transport Object representing the CustomField value instance from the CustomFieldParams of Strings.
|
Map<String,Object> |
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).
|
Set<Long> |
remove(CustomField field)
called when removing a field.
|
void |
removeValue(CustomField field,
Issue issue,
Option option)
Perform any actions required if the option selected by the issue is removed.
|
void |
setDefaultValue(FieldConfig fieldConfig,
Collection<Option> value)
Sets the default value for a Custom Field.
|
void |
validateFromParams(CustomFieldParams relevantParams,
ErrorCollection errorCollectionToAddTo,
FieldConfig config)
Ensures that the
CustomFieldParams of Strings is a valid representation of the Custom Field values. |
boolean |
valuesEqual(Collection<Option> v1,
Collection<Option> v2)
Used to compare 2 field values and work out whether a change item should be generated
|
convertDbObjectToTypes, convertTypesToDbObjects, createValue, getChangelogValue, getValueFromIssue, updateValueassertObjectImplementsType, availableForBulkEdit, getDescription, getDescriptor, getI18nBean, getKey, getName, getRelatedIndexers, getVelocityParameters, init, isRenderableclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitavailableForBulkEdit, createValue, getChangelogValue, getCloneOptionConfiguration, getCloneValue, getDescription, getDescriptor, getKey, getName, getRelatedIndexers, getValueFromIssue, init, isRenderable, isUserInputRequiredForMove, updateValuepublic static final String COMMA_REPLACEMENT
public MultiSelectCFType(OptionsManager optionsManager, CustomFieldValuePersister valuePersister, GenericConfigManager genericConfigManager, JiraBaseUrls jiraBaseUrls, SearchService searchService, FeatureManager featureManager, JiraAuthenticationContext jiraAuthenticationContext)
public Set<Long> remove(CustomField field)
AbstractMultiCFTypeSubclasses should override this if they have specific cleanup that they need to do (such as removing select list values)
remove in interface CustomFieldType<Collection<Option>,Option>remove in class AbstractMultiCFType<Option>field - The custom field that is being removed, so any data stored for
any issues for that field can be deleted.Set of issue ids that has been affectedpublic Options getOptions(FieldConfig fieldConfig, JiraContextNode jiraContextNode)
MultipleCustomFieldTypegetOptions in interface MultipleCustomFieldType<Collection<Option>,Option>fieldConfig - configuration for this fieldjiraContextNode - contextpublic void removeValue(CustomField field, Issue issue, Option option)
MultipleSettableCustomFieldTyperemoveValue in interface MultipleSettableCustomFieldType<Collection<Option>,Option>field - being editedissue - to remove stuff fromoption - option being removed.public Set<Long> getIssueIdsWithValue(CustomField field, Option option)
MultipleSettableCustomFieldTypeLong) that have the given option selected.getIssueIdsWithValue in interface MultipleSettableCustomFieldType<Collection<Option>,Option>field - the CustomField to search onoption - the Object representing a single value to search on.@Nonnull protected PersistenceFieldType getDatabaseType()
AbstractMultiCFTypegetDatabaseType in class AbstractMultiCFType<Option>PersistenceFieldType types.protected Option convertDbValueToType(Object dbValue)
AbstractMultiCFTypeconvertDbValueToType in class AbstractMultiCFType<Option>dbValue - db representation as returned by AbstractMultiCFType.convertTypeToDbValue(Object)protected Object convertTypeToDbValue(Option value)
AbstractMultiCFTypePersistenceFieldType returned by AbstractMultiCFType.getDatabaseType()convertTypeToDbValue in class AbstractMultiCFType<Option>value - Single form of Transport Objectprotected Comparator<Option> getTypeComparator()
AbstractMultiCFTypegetTypeComparator in class AbstractMultiCFType<Option>public void setDefaultValue(FieldConfig fieldConfig, Collection<Option> value)
AbstractMultiCFTypesetDefaultValue in interface CustomFieldType<Collection<Option>,Option>setDefaultValue in class AbstractMultiCFType<Option>fieldConfig - CustomField for which the default is being storedvalue - Transport Object representing the value instance of the CustomField.CustomFieldType.setDefaultValue(com.atlassian.jira.issue.fields.config.FieldConfig, Object)public Collection<Option> getDefaultValue(FieldConfig fieldConfig)
CustomFieldTypegetDefaultValue in interface CustomFieldType<Collection<Option>,Option>getDefaultValue in class AbstractMultiCFType<Option>fieldConfig - CustomField for default valueCustomFieldType.getDefaultValue(com.atlassian.jira.issue.fields.config.FieldConfig)public Collection<Option> getValueFromCustomFieldParams(CustomFieldParams parameters) throws FieldValidationException
CustomFieldTypegetValueFromCustomFieldParams in interface CustomFieldType<Collection<Option>,Option>parameters - CustomFieldParams of String objects. Will contain one value for Singular field types.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)FieldValidationException - if the String value fails to convert into ObjectsCustomFieldType.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)public Object getStringValueFromCustomFieldParams(CustomFieldParams parameters)
CustomFieldTypegetStringValueFromCustomFieldParams in interface CustomFieldType<Collection<Option>,Option>parameters - - CustomFieldParams containing String valuespublic void validateFromParams(CustomFieldParams relevantParams, ErrorCollection errorCollectionToAddTo, FieldConfig config)
CustomFieldTypeCustomFieldParams of Strings is a valid representation of the Custom Field values.
Any errors should be added to the ErrorCollection under the appropriate key as required.validateFromParams in interface CustomFieldType<Collection<Option>,Option>relevantParams - parameter object of StringserrorCollectionToAddTo - errorCollection to which any errors should be added (never null)config - FieldConfigpublic String getChangelogString(CustomField field, Collection<Option> value)
CustomFieldTypegetChangelogString in interface CustomFieldType<Collection<Option>,Option>getChangelogString in class AbstractCustomFieldType<Collection<Option>,Option>field - CustomField that the value belongs tovalue - Transport Object representing the value instance of the CustomFieldpublic Option getSingularObjectFromString(String string) throws FieldValidationException
CustomFieldTypegetSingularObjectFromString in interface CustomFieldType<Collection<Option>,Option>string - the StringFieldValidationException - if the string is an invalid representation of the Object.public String getStringFromSingularObject(Option optionObject)
CustomFieldTypeString 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 the Collection or MapgetStringFromSingularObject in interface CustomFieldType<Collection<Option>,Option>optionObject - the object@Nonnull public List<FieldConfigItemType> getConfigurationItemTypes()
CustomFieldTypeFieldConfigItemType objects. Can not be immutable.
This opens up possibilities for configurable custom fields.getConfigurationItemTypes in interface CustomFieldType<Collection<Option>,Option>getConfigurationItemTypes in class AbstractCustomFieldType<Collection<Option>,Option>FieldConfigItemTypepublic int compare(@Nonnull List<String> customFieldObjectValue1, @Nonnull List<String> customFieldObjectValue2, FieldConfig fieldConfig)
SortableCustomFieldcompare in interface SortableCustomField<List<String>>customFieldObjectValue1 - Never nullcustomFieldObjectValue2 - Never nullpublic ProjectCustomFieldImporter getProjectImporter()
ProjectImportableCustomFieldgetProjectImporter in interface ProjectImportableCustomFieldpublic static Collection<String> extractTransferObjectFromString(String value)
"red, white\, and blue" would produce two tokens in its list: value - The comma-separated input String.getStringFromTransferObject(java.util.Collection)public static String getStringFromTransferObject(Collection<String> collection)
If any items in the collection include literal commas, then these commas are escaped with a prepended backslash. eg a list that looks like:
collection - a collection of Strings to be comma separatedpublic boolean valuesEqual(Collection<Option> v1, Collection<Option> v2)
CustomFieldTypevaluesEqual in interface CustomFieldType<Collection<Option>,Option>valuesEqual in class AbstractCustomFieldType<Collection<Option>,Option>v1 - current valuev2 - new valuepublic Object accept(AbstractCustomFieldType.VisitorBase visitor)
accept in class AbstractMultiCFType<Option>public org.apache.lucene.search.Query getQueryForGroup(String fieldID, String groupName)
GroupSelectorFieldfieldName:groupName. However some custom fields, such as (@Link SelectCFType)
manipulate the field identifiers and values before storing in the index. In cases like this you will have to
implement the method such that it searches the correct fields.getQueryForGroup in interface GroupSelectorFieldfieldID - the id of the custom fieldgroupName - the name of the group to filter onpublic FieldExportParts getRepresentationFromIssue(Issue issue, CustomFieldExportContext context)
ExportableCustomFieldTypeFieldExportPart.getRepresentationFromIssue in interface ExportableCustomFieldTypeissue - to get the representation forcontext - which contains information such as the i18nHelper and fieldpublic FieldTypeInfo getFieldTypeInfo(FieldTypeInfoContext fieldTypeInfoContext)
RestAwareCustomFieldTypegetFieldTypeInfo in interface RestAwareCustomFieldTypefieldTypeInfoContext - context information for generating the FieldTypeInfo.public JsonType getJsonSchema(CustomField customField)
RestAwareCustomFieldTypegetJsonSchema in interface RestAwareCustomFieldTypepublic FieldJsonRepresentation getJsonFromIssue(CustomField field, Issue issue, boolean renderedVersionRequested, @Nullable FieldLayoutItem fieldLayoutItem)
RestAwareCustomFieldTypegetJsonFromIssue in interface RestAwareCustomFieldTypefield - 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.public JsonData getJsonDefaultValue(IssueContext issueCtx, CustomField field)
RestCustomFieldTypeOperationsgetJsonDefaultValue in interface RestCustomFieldTypeOperationsissueCtx - Issue (This should really only need to be an issue context, but for historical reasons we need an issue object.field - the Custom Fieldpublic RestFieldOperationsHandler getRestFieldOperation(CustomField field)
RestCustomFieldTypeOperationsgetRestFieldOperation in interface RestCustomFieldTypeOperationsfield - the Custom Field@Nonnull public Map<String,Object> getVelocityParameters(Issue issue, CustomField field, FieldLayoutItem fieldLayoutItem)
CustomFieldTypeThe values are added to the context for all velocity views (edit, search, view, xml)
getVelocityParameters in interface CustomFieldType<Collection<Option>,Option>getVelocityParameters in class AbstractCustomFieldType<Collection<Option>,Option>issue - The issue currently in context (Note: this will be null in cases like 'default value')field - CustomFieldfieldLayoutItem - FieldLayoutItemMap of parameters to add to the velocity context, or an empty Map otherwise (never null)Copyright © 2002-2019 Atlassian. All Rights Reserved.