|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.atlassian.jira.issue.customfields.impl.AbstractCustomFieldType<T,T>
com.atlassian.jira.issue.customfields.impl.AbstractSingleFieldType<org.ofbiz.core.entity.GenericValue>
com.atlassian.jira.issue.customfields.impl.ProjectCFType
public class ProjectCFType
Custom Field Type to select a Project on this JIRA instance.
GenericValueLong of Project ID
| Nested Class Summary | |
|---|---|
static interface |
ProjectCFType.Visitor<T>
|
| Nested classes/interfaces inherited from class com.atlassian.jira.issue.customfields.impl.AbstractCustomFieldType |
|---|
AbstractCustomFieldType.VisitorBase<X> |
| Field Summary |
|---|
| 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 |
| Fields inherited from interface com.atlassian.jira.issue.customfields.CustomFieldType |
|---|
DEFAULT_VALUE_TYPE |
| Constructor Summary | |
|---|---|
ProjectCFType(CustomFieldValuePersister customFieldValuePersister,
ProjectConverter projectConverter,
PermissionManager permissionManager,
JiraAuthenticationContext jiraAuthenticationContext,
GenericConfigManager genericConfigManager,
JiraBaseUrls jiraBaseUrls,
ProjectManager projectManager)
|
|
| Method Summary | |
|---|---|
Object |
accept(AbstractCustomFieldType.VisitorBase visitor)
|
int |
compare(org.ofbiz.core.entity.GenericValue customFieldObjectValue1,
org.ofbiz.core.entity.GenericValue customFieldObjectValue2,
FieldConfig fieldConfig)
Compares the two custom field objects. |
String |
getChangelogString(CustomField field,
org.ofbiz.core.entity.GenericValue 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. |
protected Object |
getDbValueFromObject(org.ofbiz.core.entity.GenericValue customFieldObject)
Returns the database representation of the Java object as stored for that CustomField. |
FieldTypeInfo |
getFieldTypeInfo(FieldTypeInfoContext fieldTypeInfoContext)
Returns lower level Information about the 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. |
protected org.ofbiz.core.entity.GenericValue |
getObjectFromDbValue(Object databaseValue)
Returns the Transport Object for the given Custom Field value as represented by the value stored in the database |
ProjectCustomFieldImporter |
getProjectImporter()
Returns the object that will perform the actual project import functions for the custom field type. |
RestFieldOperationsHandler |
getRestFieldOperation(CustomField field)
Returns the RestFieldOperationsHandler for this field. |
org.ofbiz.core.entity.GenericValue |
getSingularObjectFromString(String string)
Returns a Singular Object, given the string value as passed by the presentation tier. |
String |
getStringFromSingularObject(org.ofbiz.core.entity.GenericValue customFieldObject)
Returns the String representation of a single value within the CustomFieldType. |
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). |
| Methods inherited from class com.atlassian.jira.issue.customfields.impl.AbstractSingleFieldType |
|---|
createValue, getChangelogValue, getDefaultValue, getJsonDefaultValue, getStringValueFromCustomFieldParams, getValueFromCustomFieldParams, getValueFromIssue, remove, setDefaultValue, updateValue, validateFromParams |
| Methods inherited from class com.atlassian.jira.issue.customfields.impl.AbstractCustomFieldType |
|---|
assertObjectImplementsType, availableForBulkEdit, getDescription, getDescriptor, getI18nBean, getKey, getName, getRelatedIndexers, getVelocityParameters, init, isRenderable, valuesEqual |
| 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.fields.rest.RestCustomFieldTypeOperations |
|---|
getJsonDefaultValue |
| Constructor Detail |
|---|
public ProjectCFType(CustomFieldValuePersister customFieldValuePersister,
ProjectConverter projectConverter,
PermissionManager permissionManager,
JiraAuthenticationContext jiraAuthenticationContext,
GenericConfigManager genericConfigManager,
JiraBaseUrls jiraBaseUrls,
ProjectManager projectManager)
| Method Detail |
|---|
public int compare(@NotNull
org.ofbiz.core.entity.GenericValue customFieldObjectValue1,
@NotNull
org.ofbiz.core.entity.GenericValue customFieldObjectValue2,
FieldConfig fieldConfig)
SortableCustomField
compare in interface SortableCustomField<org.ofbiz.core.entity.GenericValue>customFieldObjectValue1 - Never nullcustomFieldObjectValue2 - Never null
@NotNull protected PersistenceFieldType getDatabaseType()
AbstractSingleFieldType
getDatabaseType in class AbstractSingleFieldType<org.ofbiz.core.entity.GenericValue>PersistenceFieldType types.protected Object getDbValueFromObject(org.ofbiz.core.entity.GenericValue customFieldObject)
AbstractSingleFieldTypeAbstractSingleFieldType.getDatabaseType()
getDbValueFromObject in class AbstractSingleFieldType<org.ofbiz.core.entity.GenericValue>customFieldObject - the Transport Object
protected org.ofbiz.core.entity.GenericValue getObjectFromDbValue(@NotNull
Object databaseValue)
throws FieldValidationException
AbstractSingleFieldType
getObjectFromDbValue in class AbstractSingleFieldType<org.ofbiz.core.entity.GenericValue>databaseValue - - String, Double or Date objects as returned from AbstractSingleFieldType.getDbValueFromObject(Object)
FieldValidationException - if field validation fails.public String getStringFromSingularObject(org.ofbiz.core.entity.GenericValue customFieldObject)
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 Map
getStringFromSingularObject in interface CustomFieldType<org.ofbiz.core.entity.GenericValue,org.ofbiz.core.entity.GenericValue>customFieldObject - the object
public org.ofbiz.core.entity.GenericValue getSingularObjectFromString(String string)
throws FieldValidationException
CustomFieldType
getSingularObjectFromString in interface CustomFieldType<org.ofbiz.core.entity.GenericValue,org.ofbiz.core.entity.GenericValue>string - the String
FieldValidationException - if the string is an invalid representation of the Object.@NotNull public List<FieldConfigItemType> getConfigurationItemTypes()
CustomFieldTypeFieldConfigItemType objects. Can not be immutable.
This opens up possibilties for configurable custom fields.
getConfigurationItemTypes in interface CustomFieldType<org.ofbiz.core.entity.GenericValue,org.ofbiz.core.entity.GenericValue>getConfigurationItemTypes in class AbstractCustomFieldType<org.ofbiz.core.entity.GenericValue,org.ofbiz.core.entity.GenericValue>FieldConfigItemType
public String getChangelogString(CustomField field,
org.ofbiz.core.entity.GenericValue value)
CustomFieldType
getChangelogString in interface CustomFieldType<org.ofbiz.core.entity.GenericValue,org.ofbiz.core.entity.GenericValue>getChangelogString in class AbstractCustomFieldType<org.ofbiz.core.entity.GenericValue,org.ofbiz.core.entity.GenericValue>field - CustomField that the value belongs tovalue - Transport Object representing the value instance of the CustomField
@NotNull
public Map<String,Object> getVelocityParameters(Issue issue,
CustomField field,
FieldLayoutItem fieldLayoutItem)
CustomFieldType
getVelocityParameters in interface CustomFieldType<org.ofbiz.core.entity.GenericValue,org.ofbiz.core.entity.GenericValue>getVelocityParameters in class AbstractCustomFieldType<org.ofbiz.core.entity.GenericValue,org.ofbiz.core.entity.GenericValue>issue - The issue currently in context (Note: this will be null in cases like 'default value')field - CustomFieldfieldLayoutItem - FieldLayoutItem
Map of parameters to add to the velocity context, or an empty Map otherwise (never null)public ProjectCustomFieldImporter getProjectImporter()
ProjectImportableCustomField
getProjectImporter in interface ProjectImportableCustomFieldpublic Object accept(AbstractCustomFieldType.VisitorBase visitor)
accept in class AbstractSingleFieldType<org.ofbiz.core.entity.GenericValue>public FieldTypeInfo getFieldTypeInfo(FieldTypeInfoContext fieldTypeInfoContext)
RestAwareCustomFieldType
getFieldTypeInfo in interface RestAwareCustomFieldTypefieldTypeInfoContext - context information for generating the FieldTypeInfo.
public JsonType getJsonSchema(CustomField customField)
RestAwareCustomFieldType
getJsonSchema in interface RestAwareCustomFieldType
public FieldJsonRepresentation getJsonFromIssue(CustomField field,
Issue issue,
boolean renderedVersionRequested,
@Nullable
FieldLayoutItem fieldLayoutItem)
RestAwareCustomFieldType
getJsonFromIssue 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 RestFieldOperationsHandler getRestFieldOperation(CustomField field)
RestCustomFieldTypeOperations
getRestFieldOperation in interface RestCustomFieldTypeOperationsfield - the Custom Field
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||