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
it looks like you have to write an EventListener that listens to the issue creation and does the customization afterwards
Jesus.
I was afraid that would happen ^^
Alright thanks. Gonna try my best.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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); } // ... }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.