The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

ScriptRunner how to add additional 'built-in scripts'?

KB
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 23, 2018

We use custom validators that are repeated on various tranisitions in the JIRA workflow. Therefore I'd like to add our scriptrunner validator to built-in validator scripts. 

I came across an example for listeners but would like to know how it can be done for Validator. 

example for listener:

@ScriptListener
class SampleScriptListener implements CannedScript {

public static String FIELD_MY_PARAM = "FIELD_MY_PARAM"

@Override
String getName() {
"Sample listener"
}

@Override
String getDescription() {
"Sample listener from a plugin"
}

@Override
List getCategories() {
[] // unused
}

example for validator (doesn't work):

class MyFirstValidator implements CannedScript {

public static String FIELD_MY_PARAM = "FIELD_MY_PARAM"

@Override
String getName() {
"My Validator"
}

@Override
String getDescription() {
"Sample listener from a plugin"
}

@Override
List getCategories() {
["Validator"] // unused
}

 Is there an annotation that I need to use for validator? Do you have an example I could use?

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Nisha Hajamohideen
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
March 23, 2018
KB
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 26, 2018

Thanks Nisha for responding here. 

I'm afraid this is not what I was looking for. I need an example how to implement CannedScript for a validator I have created. 

So that it is available as another built-in "Script Validator" similar to "Fields(s) changed validator". 

TAGS
AUG Leaders

Atlassian Community Events