How do I properly integrate the default CreateIssue Dialog into my plugin?

Maja Stach April 22, 2013

I was wondering whether it is possible to integrate the CreateIssue dialog into a plugin and after triggering the create event make the plugin execute some more java-code from the webwork plugin.

Right now the situation is as follows: The plugin calls for the CreateIssue dialog to be opened at some point but after creating the Issue it exits the code.

I know that I can redirect back into my code when I write my own template. But when I use the default jira dialog I can't just do that.

Is there any way to go back into my code?

the method currently used is:

ServletActionContext.getResponse().sendRedirect(url);

Thanks in advance

2 answers

1 accepted

0 votes
Answer accepted
Thomas Heyne
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.
April 22, 2013

it looks like you have to write an EventListener that listens to the issue creation and does the customization afterwards

Maja Stach April 22, 2013

Jesus.

I was afraid that would happen ^^
Alright thanks. Gonna try my best.

0 votes
Nadir MEZIANI
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.
April 22, 2013

Hi,

the url to create issue req.getContextPath()+"secure/CreateIssue.jspa"

and you can add parameters : issue type, project..

For example

resp.sendRedirect(req.getContextPath()+"/secure/CreateIssue.jspa?issuetype=issuetypeid")

Maja Stach April 22, 2013

yes, I know. and the plugin already does that.

It's just that after clicking "create" I want to run more java-code instead of just doing what the dialog does on default

Maja Stach April 22, 2013

well I guess I've not been formulating this right.

It's not really that I want to change what CreateIssue does. I want CreateIssue to execute just as it usually does, but after it has finished executing I kinda want to redirect to my own code again.

If I wrote the code for the dialog myself I would just add a post function to the template. But I can't really do that because I would have to know the whole jira structure, which is way too complex...

Thomas Heyne
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.
April 22, 2013

if you want to do more than the "deafult" provides haven't you just to write your own class that extends from com.atlassian.jira.web.action.issue.CreateIssue and add your customization there?

public class MyCreateIssue extends CreateIssue {

    public MyCreateIssue(IssueFactory issueFactory, IssueCreationHelperBean issueCreationHelperBean) {
        super(issueFactory, issueCreationHelperBean);
    }
    
    // ...
}

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events