Can anyone help me with java code for setting the values to the custom fields in jira and also checking the custom field is of cascade select type and also how to set values for custom field of cascade select type for jira 5.2.5. ?
We are having JIRA 3.* version, can anybody send me sample code for update issue?
I can create issue using RemoteCustomFieldValue and setting key value, however updateIssue method accepts only RemoteFieldValue and this type does not support key property.
Thanks
Makarand
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for the quick response.
But when i wrote the foloowing code to check whether the custom field is of type cascade select field i'm the getting the error at line :
if (customField.getCustomFieldType() instanceof CascadingSelectCFType)
it is not recognizing the "CascadingSelectCFType" keyword.
here is the code :
CustomFieldManager customFieldManager = ComponentAccessor.getCustomFieldManager();
Collection<CustomField> issueCustomFields = customFieldManager.getCustomFieldObjects(issue);
for (CustomField customField : issueCustomFields) {
if (customField.getCustomFieldType() instanceof CascadingSelectCFType) {
//if(isCascadingSelect(customField)){
addCascadingSelectCustomFieldValueToIssueInputParameters(issueInputParameters,
issue,
customField);
continue;
}
This code is written for jira 5.2.5.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you try explicitely for CascadingSelectCFType customfield and check
CustomField casCF = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName(
"<your casading select field>"
);
if(casCF!=null)
{
<...>
}
For reference you check https://confluence.atlassian.com/pages/viewpage.action?pageId=163414052
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.