It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I'm trying to create subTasks to an Issue.
In my code I create the Issue first and then I try to create SubTasks via issueService.validateSubTaskCreate(.....) and so on.
when I run my plugin it creates the normal Issue just like I intended. but gives me an exeption:
java.lang.IllegalStateException: You can not create an issue with an invalid validation result.
I've tried different things up until now. I tried getErrorCollection() on the validationResult, which came back empty. But when I tried isValid() it returned false and I have no idea why since I did everything like I did with the main Issue
here's what I did:
public List<IssueInputParameters> subTaskParameters(Issue newIssue, Issue oldIssue){ List<IssueInputParameters> newParams = new ArrayList(); List<Issue> currentSubTasks = (List<Issue>) oldIssue.getSubTaskObjects(); for(Issue issue : currentSubTasks){ IssueInputParameters input = issueService.newIssueInputParameters(); input.setDescription(issue.getDescription()); input.setIssueTypeId(issue.getIssueTypeObject().getId()); input.setProjectId(issue.getProjectObject().getId()); input.setSummary(issue.getSummary()); input.setAssigneeId(getLoggedInUser().getDisplayName()); newParams.add(input); } return newParams; } public void createSubTasks(Issue newIssue, Issue oldIssue){ List<IssueInputParameters> subTaskParams = subTaskParameters(newIssue, oldIssue); for(IssueInputParameters params : subTaskParams){ CreateValidationResult createValidationResult = issueService.validateSubTaskCreate(getLoggedInUser(), newIssue.getId(), params); IssueResult result = issueService.create(getLoggedInUser(), createValidationResult); } }
Thanks beforehand.
Could it be failing because the parent issue is not created by the time you get to the subtasks? I think that might cause a validation failure with no actual results (it used to in version 3)
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.