Class UserCFType
java.lang.Object
com.atlassian.jira.issue.customfields.impl.AbstractCustomFieldType<ApplicationUser,ApplicationUser>
com.atlassian.jira.issue.customfields.impl.AbstractSingleFieldType<ApplicationUser>
com.atlassian.jira.issue.customfields.impl.UserCFType
- All Implemented Interfaces:
ProjectImportableCustomField,CustomFieldType<ApplicationUser,,ApplicationUser> ExportableCustomFieldType,RestAwareCustomFieldType,RestCustomFieldTypeOperations,UserField,UserCFNotificationTypeAware
public class UserCFType
extends AbstractSingleFieldType<ApplicationUser>
implements UserCFNotificationTypeAware, ProjectImportableCustomField, UserField, RestAwareCustomFieldType, RestCustomFieldTypeOperations, ExportableCustomFieldType
Custom Field allow selection of a single
ApplicationUser. For multi-user see MultiUserCFType
- Transport Object Type
ApplicationUser- Database Storage Type
Stringof user name
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class com.atlassian.jira.issue.customfields.impl.AbstractCustomFieldType
AbstractCustomFieldType.VisitorBase<X> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final SharedEntity.TypeDescriptor<SharedEntity.Identifier> Fields inherited from class com.atlassian.jira.issue.customfields.impl.AbstractSingleFieldType
customFieldValuePersister, FIELD_TYPE_DATE, FIELD_TYPE_NUMBER, FIELD_TYPE_STRING, FIELD_TYPE_TEXT, genericConfigManager, logFields inherited from interface com.atlassian.jira.issue.customfields.CustomFieldType
DEFAULT_VALUE_TYPE, RESOURCE_PREVIEW -
Constructor Summary
ConstructorsConstructorDescriptionUserCFType(CustomFieldValuePersister customFieldValuePersister, UserConverter userConverter, GenericConfigManager genericConfigManager, ApplicationProperties applicationProperties, JiraAuthenticationContext authenticationContext, FieldConfigSchemeManager fieldConfigSchemeManager, ProjectManager projectManager, SoyTemplateRendererProvider soyTemplateRendererProvider, GroupManager groupManager, ProjectRoleManager projectRoleManager, UserSearchService searchService, JiraBaseUrls jiraBaseUrls, UserHistoryManager userHistoryManager, UserFilterManager userFilterManager, I18nHelper i18nHelper, UserBeanFactory userBeanFactory, FeatureManager featureManager, FieldVisibilityManager fieldVisibilityManager) -
Method Summary
Modifier and TypeMethodDescriptiongetChangelogString(CustomField field, ApplicationUser 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.getChangelogValue(CustomField field, ApplicationUser value) Returns a values to be stored in the change log, example is the id of the changed item.Returns a List ofFieldConfigItemTypeobjects.protected PersistenceFieldTypeType of database field needed to store this field.protected ObjectgetDbValueFromObject(ApplicationUser customFieldObject) Returns the database representation of the Java object as stored for that CustomField.getFieldTypeInfo(FieldTypeInfoContext fieldTypeInfoContext) Returns lower level Information about the field.getIndexers(CustomField customField) 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 ofNonNullCustomFieldProviderthat Jira will use to optimize indexing performance.protected ApplicationUsergetObjectFromDbValue(Object databaseValue) Returns the Transport Object for the given Custom Field value as represented by the value stored in the databaseReturns 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.Returns theStringrepresentation of a single value within the CustomFieldType.getValueFromCustomFieldParams(CustomFieldParams relevantParams) Retrieves the Transport Object representing the CustomField value instance from the CustomFieldParams of Strings.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).remove(CustomField field) called when removing a field.voidupdateValue(CustomField customField, Issue issue, ApplicationUser user) the value does exist, and the new value is different than the existing one.voidvalidateFromParams(CustomFieldParams relevantParams, ErrorCollection errorCollectionToAddTo, FieldConfig config) This method validate the parameters based on the following criteria: If the specified new value is NOT a valid user, it fails. If the previous value is specified (obtained from the issue object in the "issue" key), and the specified new value is the same as the previous value, it succeeds and the rest of the validations are skipped.Methods inherited from class com.atlassian.jira.issue.customfields.impl.AbstractSingleFieldType
createValue, getDefaultValue, getJsonDefaultValue, getStringValueFromCustomFieldParams, getValueFromIssue, getValueFromIssue, setDefaultValueMethods inherited from class com.atlassian.jira.issue.customfields.impl.AbstractCustomFieldType
assertObjectImplementsType, availableForBulkEdit, getDescription, getDescriptor, getI18nBean, getKey, getName, getVelocityParameters, init, isRenderable, valuesEqualMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.atlassian.jira.issue.customfields.CustomFieldType
areAllRequiredParametersPresent, getCloneOptionConfiguration, getCloneValue, isUserInputRequiredForMove, requiresAdditionalParamsMethods inherited from interface com.atlassian.jira.issue.fields.rest.RestCustomFieldTypeOperations
getJsonDefaultValueMethods inherited from interface com.atlassian.jira.notification.type.UserCFNotificationTypeAware
getValueFromIssue
-
Field Details
-
ENTITY_TYPE
-
-
Constructor Details
-
UserCFType
public UserCFType(CustomFieldValuePersister customFieldValuePersister, UserConverter userConverter, GenericConfigManager genericConfigManager, ApplicationProperties applicationProperties, JiraAuthenticationContext authenticationContext, FieldConfigSchemeManager fieldConfigSchemeManager, ProjectManager projectManager, SoyTemplateRendererProvider soyTemplateRendererProvider, GroupManager groupManager, ProjectRoleManager projectRoleManager, UserSearchService searchService, JiraBaseUrls jiraBaseUrls, UserHistoryManager userHistoryManager, UserFilterManager userFilterManager, I18nHelper i18nHelper, UserBeanFactory userBeanFactory, FeatureManager featureManager, FieldVisibilityManager fieldVisibilityManager)
-
-
Method Details
-
updateValue
Description copied from class:AbstractSingleFieldTypethe value does exist, and the new value is different than the existing one.- Specified by:
updateValuein interfaceCustomFieldType<ApplicationUser,ApplicationUser> - Overrides:
updateValuein classAbstractSingleFieldType<ApplicationUser>- Parameters:
customField-CustomFieldfor which the value is being storedissue- TheIssueto be stored against.user- Transport Object representing the value instance of the CustomField.
-
getChangelogValue
Description copied from interface:CustomFieldTypeReturns a values to be stored in the change log, example is the id of the changed item.- Specified by:
getChangelogValuein interfaceCustomFieldType<ApplicationUser,ApplicationUser> - Overrides:
getChangelogValuein classAbstractSingleFieldType<ApplicationUser>- Parameters:
field- CustomField that the value belongs tovalue- Transport Object representing the value instance of the CustomField- Returns:
- Change log value.
-
getChangelogString
Description copied from interface:CustomFieldTypeReturns 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.- Specified by:
getChangelogStringin interfaceCustomFieldType<ApplicationUser,ApplicationUser> - Overrides:
getChangelogStringin classAbstractCustomFieldType<ApplicationUser,ApplicationUser> - Parameters:
field- CustomField that the value belongs tovalue- Transport Object representing the value instance of the CustomField- Returns:
- Change log string.
-
getDbValueFromObject
Description copied from class:AbstractSingleFieldTypeReturns the database representation of the Java object as stored for that CustomField. (eg. ProjectId if the Value represents a project). Must be compatable with type returned byAbstractSingleFieldType.getDatabaseType()- Specified by:
getDbValueFromObjectin classAbstractSingleFieldType<ApplicationUser>- Parameters:
customFieldObject- the Transport Object- Returns:
- String, Double or Date
-
getObjectFromDbValue
protected ApplicationUser getObjectFromDbValue(@Nonnull Object databaseValue) throws FieldValidationException Description copied from class:AbstractSingleFieldTypeReturns the Transport Object for the given Custom Field value as represented by the value stored in the database- Specified by:
getObjectFromDbValuein classAbstractSingleFieldType<ApplicationUser>- Parameters:
databaseValue- - String, Double or Date objects as returned fromAbstractSingleFieldType.getDbValueFromObject(Object)- Returns:
- Domain object or GenericValue
- Throws:
FieldValidationException- if field validation fails.
-
getStringFromSingularObject
Description copied from interface:CustomFieldTypeReturns theStringrepresentation 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 theCollectionorMap- Specified by:
getStringFromSingularObjectin interfaceCustomFieldType<ApplicationUser,ApplicationUser> - Parameters:
value- the object- Returns:
- String representation of the Object
-
getSingularObjectFromString
Description copied from interface:CustomFieldTypeReturns 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:
getSingularObjectFromStringin interfaceCustomFieldType<ApplicationUser,ApplicationUser> - Parameters:
string- the String- Returns:
- singularObject instance
- Throws:
FieldValidationException- if the string is an invalid representation of the Object.
-
validateFromParams
public void validateFromParams(CustomFieldParams relevantParams, ErrorCollection errorCollectionToAddTo, FieldConfig config) This method validate the parameters based on the following criteria:- If the specified new value is NOT a valid user, it fails.
- If the previous value is specified (obtained from the issue object in the "issue" key),
and the specified new value is the same as the previous value,
it succeeds and the rest of the validations are skipped.
This is to be consistent with the Assignee field where even if the user might not pass
the validation in the current context, as long as it does not change, we will let it go.
This step relies on the caller to set the issue object into a parameter named "issue" in the
relevantParamsmap. - If a "requireProjectIds" parameter is specified and its value is "true", then the specified new value is checked against the user filtering criteria. Failing the check will immediately fail the whole validation. The "requireProjectIds" parameter indicates that the list of project id's is to be obtained from issue object or field config. The list of project id's might be required for validating project roles in the user filtering.
- Otherwise, the validation succeeds.
- Specified by:
validateFromParamsin interfaceCustomFieldType<ApplicationUser,ApplicationUser> - Overrides:
validateFromParamsin classAbstractSingleFieldType<ApplicationUser>- Parameters:
relevantParams- the custom field parameters, containing the new value under the null key, and optionally the previous value (username) as a single String item list under the key "oldValue", and also optionally the list of projectIds in the current context, as a String list under the key "projectIds", and also optionally a value to indicate whether to load project id's from field config with a single boolean item list under the key "requireProjectIds".errorCollectionToAddTo- any validation errors will be added into this collectionconfig- the field configuration
-
getValueFromCustomFieldParams
public ApplicationUser getValueFromCustomFieldParams(CustomFieldParams relevantParams) throws FieldValidationException Description copied from interface:CustomFieldTypeRetrieves the Transport Object representing the CustomField value instance from the CustomFieldParams of Strings.- Specified by:
getValueFromCustomFieldParamsin interfaceCustomFieldType<ApplicationUser,ApplicationUser> - Overrides:
getValueFromCustomFieldParamsin classAbstractSingleFieldType<ApplicationUser>- Parameters:
relevantParams- 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:
-
getDatabaseType
Description copied from class:AbstractSingleFieldTypeType of database field needed to store this field.- Specified by:
getDatabaseTypein classAbstractSingleFieldType<ApplicationUser>- Returns:
- One of the predefined
PersistenceFieldTypetypes.
-
getVelocityParameters
@Nonnull public Map<String,Object> getVelocityParameters(Issue issue, CustomField field, FieldLayoutItem fieldLayoutItem) Description copied from interface:CustomFieldTypeThe 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:
getVelocityParametersin interfaceCustomFieldType<ApplicationUser,ApplicationUser> - Overrides:
getVelocityParametersin classAbstractCustomFieldType<ApplicationUser,ApplicationUser> - Parameters:
issue- The issue currently in context (Note: this will be null in cases like 'default value')field- CustomFieldfieldLayoutItem- FieldLayoutItem- Returns:
- A
Mapof parameters to add to the velocity context, or an empty Map otherwise (never null)
-
getConfigurationItemTypes
Description copied from interface:CustomFieldTypeReturns a List ofFieldConfigItemTypeobjects. Can not be immutable. This opens up possibilities for configurable custom fields.- Specified by:
getConfigurationItemTypesin interfaceCustomFieldType<ApplicationUser,ApplicationUser> - Overrides:
getConfigurationItemTypesin classAbstractCustomFieldType<ApplicationUser,ApplicationUser> - Returns:
- List of
FieldConfigItemType
-
getProjectImporter
Description copied from interface:ProjectImportableCustomFieldReturns the object that will perform the actual project import functions for the custom field type.- Specified by:
getProjectImporterin interfaceProjectImportableCustomField- Returns:
- the object that will perform the actual project import functions for the custom field type.
-
accept
- Overrides:
acceptin classAbstractSingleFieldType<ApplicationUser>
-
getRepresentationFromIssue
Description copied from interface:ExportableCustomFieldTypeGet the custom field representation of the issue, this object contains the column headers and values for each of theFieldExportPart.- Specified by:
getRepresentationFromIssuein interfaceExportableCustomFieldType- Parameters:
issue- to get the representation forcontext- which contains information such as the i18nHelper and field- Returns:
- the exportable parts of this issue
-
getNonNullCustomFieldProvider
Description copied from interface:CustomFieldTypeReturns an instance ofNonNullCustomFieldProviderthat Jira will use to optimize indexing performance.- Specified by:
getNonNullCustomFieldProviderin interfaceCustomFieldType<ApplicationUser,ApplicationUser>
-
getFieldTypeInfo
Description copied from interface:RestAwareCustomFieldTypeReturns lower level Information about the field. This information contains allowed values and/or the autocomplete url- Specified by:
getFieldTypeInfoin interfaceRestAwareCustomFieldType- Parameters:
fieldTypeInfoContext- context information for generating theFieldTypeInfo.- Returns:
- Low level information about the field.
-
getJsonSchema
Description copied from interface:RestAwareCustomFieldTypeReturn a description of the shape of this field when represented as JSON.- Specified by:
getJsonSchemain interfaceRestAwareCustomFieldType- Parameters:
customField-
-
getJsonFromIssue
public FieldJsonRepresentation getJsonFromIssue(CustomField field, Issue issue, boolean renderedVersionRequested, @Nullable FieldLayoutItem fieldLayoutItem) Description copied from interface:RestAwareCustomFieldTypeReturn a JsonData representation of the field value- Specified by:
getJsonFromIssuein 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:RestCustomFieldTypeOperationsReturns the RestFieldOperationsHandler for this field.- Specified by:
getRestFieldOperationin interfaceRestCustomFieldTypeOperations- Parameters:
field- the Custom Field- Returns:
- the RestFieldOperationsHandler for this field.
-
remove
Description copied from class:AbstractSingleFieldTypecalled when removing a field. return issue IDs affected.Subclasses should override this if they have specific cleanup that they need to do (such as removing select list values)
- Specified by:
removein interfaceCustomFieldType<ApplicationUser,ApplicationUser> - Overrides:
removein classAbstractSingleFieldType<ApplicationUser>- Parameters:
field- The custom field that is being removed, so any data stored for any issues for that field can be deleted.- Returns:
Set<Long>of issue ids that has been affected
-
getIndexers
- Specified by:
getIndexersin interfaceCustomFieldType<ApplicationUser,ApplicationUser> - Parameters:
customField- the custom field to get the indexers of.- Returns:
- List of instantiated and initialised
FieldIndexerobjects. Return an empty list if none available.
-