Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

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

Suggest an answer

Log in or Sign up to answer
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 Leaders.
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