issue.summary.toString(); or issue.getSummary().toString(); in JIRA 6.4.3

Marty Williams September 18, 2016

Trying to pull the string for the Summary coming in from emails.

 

Which is the correct syntax?

 

Thanks!

3 answers

0 votes
crf
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 19, 2016

In most scripting and templating languages, such as groovy or Velocity, these are going to do the same thing. These languages aim to make your life easier by examining the classes for methods that have names like x.getFoo() and presenting them as if they were publicly accessible members x.foo. This is just syntactic sugar and has exactly the same meaning.

If you are getting an error at issue.summary.toString(), then my first wild guess would be that you're getting an NPE because issue is unexpectedly null.

0 votes
Marty Williams September 19, 2016

So we have a mail handler that pulls emails from exchange and creates tickets in JIRA, first step on the Create - Post Function it hits a .groovy script.

The groovy script will assign ticket priority, and then run the Summary (pulled from the title of the email) through some regex to pull info to be put to customfields, and set assignee.

At the moment atlassian-jira.log is saying it's erroring at issue.summary.toString()

0 votes
Bhushan Nagaraj
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 18, 2016

Hey Marty

Can you please provide more context about the "from emails" part?

If you are using the Java API issue.getSummary() returns a String.

If you are referring to the velocity vm file, issue.summary should get you the string.

Cheers

Bhushan

Suggest an answer

Log in or Sign up to answer