Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Customfield updateValue class cast exception String cannot be cast to Option

Komail Badami May 10, 2017 edited

I have a radio button field whose value I am updating during issue creation which is fetched from a workflow transition screen, but I end up getting the below exception

java.lang.ClassCastException: java.lang.String cannot be cast to com.atlassian.jira.issue.customfields.option.Option

Below is the code

 

FieldLayoutItem fieldLayoutItem = ComponentAccessor.getFieldLayoutManager().getFieldLayout(issue)
.getFieldLayoutItem(customField);
DefaultIssueChangeHolder issueChangeHolder = new DefaultIssueChangeHolder();
CustomField customField = ComponentAccessor.getCustomFieldManager().getCustomFieldObject(customFieldId);
CustomFieldManager custFieldMgr = ComponentAccessor.getCustomFieldManager();
<--Get the value which was set in the radio button-->
Option optionValue = (Option)mIssue.getCustomFieldValue(custFieldMgr.getCustomFieldObject("customfield_" + customFieldId));
System.out.println("Option value "+optionValue.getValue());
issue.setCustomFieldValue(customField, optionValue.getValue());
ModifiedValue modifiedValue = new ModifiedValue("", optionValue.getValue());
customField.updateValue(fieldLayoutItem, issue, modifiedValue, issueChangeHolder);

 How can I resolve this issue , I am able to get the values set in the customfield but due to this cannot update the values when the issue is created.

1 answer

0 votes
Jack Nolddor _Sweet Bananas_
Atlassian Partner
August 7, 2019

Hi

Does it work if you change these two lines as shown below?


issue.setCustomFieldValue(customField, optionValue);
ModifiedValue modifiedValue = new ModifiedValue(null, optionValue);

 

Regards

Suggest an answer

Log in or Sign up to answer
TAGS
atlassian, rovo agent workshop, rovo workshop series, build rovo agent, atlassian intelligence, ai agents, rovo in action, automation agents, ai for teams, atlassian learning, rovo development, agent building tutorial

[Workshop Series] Let's build a Rovo Agent

AI-curious? This series walks you through building Rovo Agents step by step, no matter your experience level. Multiple workshops available throughout October and November!

Register now
AUG Leaders

Upcoming Jira Events