You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello. Im stuck with a strange problem.
I have a webwork module with an action class and velocity view. I can access action class methods from velocity template with $action.getIssueTypes(). This works fine until i need to pass parameters to the method. So when i use
$action.findTransitionsByIssueTypeId($issueTypeId)
it does not call the method, but instead prints the above instruction as text on the page. I have also tried
${action.findTransitionsByIssueTypeId($issueTypeId)}
${action.findTransitionsByIssueTypeId(${issueTypeId})}
$action.findTransitionsByIssueTypeId(${issueTypeId})
${action.findTransitionsByIssueTypeId(1)}
none of above works. As soon i have anything inside parameters bracket, it seems to be treaten as simple text by velocity.
i am sure that findTransitionsByIssueTypeId is working properly. It passes the tests. I am also sure, that there is an entry with id 1.
This is what i have
atlassian-plugin.xml
----------------------------
<webwork1 key="transitions-management-webwork" name="Transitions Management Webwork" i18n-name-key="create-and-link.components.transitions-management-webwork.name"> <description key="create-and-link.components.transitions-management-webwork.description">The Successor Transition Management</description> <actions> <action name="com.bssnsoftware.jira.plugin.createandlink.actions.EditTransitionAction" alias="EditTransition"> <view name="input">/views/edittransition/edit.vm</view> </action> <action name="com.bssnsoftware.jira.plugin.createandlink.actions.ManageTransitionsAction" alias="ManageTransitions"> <view name="success">/views/managetransitions/view.vm</view> </action> </actions> </webwork1>
ManageTransitionsAction.java
public class ManageTransitionsAction extends JiraWebActionSupport { private static final long serialVersionUID = -2086781953876101793L; @SuppressWarnings("unused") private static final Logger log = LoggerFactory.getLogger(EditTransitionAction.class); private final IssueTypeManager issueTypeManager; private final TransitionService transitionService; /* Constructor */ public ManageTransitionsAction(final IssueTypeManager issueTypeManager, final TransitionService transitionService) { super(); this.issueTypeManager = issueTypeManager; this.transitionService = transitionService; } @Override public String execute() throws Exception { return super.execute(); // returns SUCCESS } public Collection<IssueType> getIssueTypes() { return issueTypeManager.getIssueTypes(); } public Collection<Transition> findTransitionsByIssueTypeId(final String issueTypeId) { Collection<Transition> transitions; final Long id = Long.valueOf(issueTypeId); transitions = transitionService.findTransitionByIssueTypeId(id); log.info("###" + transitions.size()); return transitions; } }
view.vm
#enable_html_escaping() ${webResourceManager.requireResourcesForContext("com.bssnsoftware.jira.create-and-link-plugin")} <h1>$action.getText('create-and-link.view.header')</h1> <table class="aui"> <thead> <tr > <th class="headrow" >Issue Type</th> <th>Transitions</th> </tr> </thead> #foreach($issueType in $action.getIssueTypes()) <tr> <td class="issuetype-column"><img src="$!{issueType.getCompleteIconUrl()}" /> $!{issueType.getName()}</td> <td class="transitions-column"> <span>${action.findTransitionsByIssueTypeId($issueType.getId())}</span> </td> </tr> #end </table> <a class="button aui-button" href="${req.contextPath}/secure/EditTransition!default.jspa" id="edit-transition-link">$action.getText('create-and-link.view.create-transition')</a> </div>
output
as you can see, calling $action.getIssueTypes() without parameters works fine. $action.findTransitionsByIssueTypeId($issueTypeId) does not get processed.
out of my disperation i have changed the signature of findTransitionsByIssueTypeId() to take no parameters and instead use a hardcoded id. So the call $action.findTransitionsByIssueTypeId() works.
When i touch the parameters, it does not.
Any ideas?
I've found a work around. Passing parameters as Strings and converting them to proper representation (Long in my case) seems to work.
example: $action.findTransitionsByIssueTypeId("$issueTypeId")
and in action
Long issueTypeId = Long.valueOf(issueTypeIdString);
Recommended Learning For You
Level up your skills with Atlassian learning
Jira Align Program Essentials
Learn how to use Jira Align at the program level and how to plan for and manage your Program Increment (PI).
Managing Agile Boards and Reports
Learn how to pick the right board type for your team and customize it to fit your specific requirements.
Atlassian Certified Associate
Jira Software Board Configuration
Earn an associate-level credential from Atlassian that shows you can effectively configure Jira Software boards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.