You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I have this code
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.link.IssueLinkManager
import org.apache.log4j.Category
import com.atlassian.jira.issue.link.IssueLink
import com.opensymphony.workflow.InvalidInputException
IssueLinkManager linkMgr = ComponentAccessor.getIssueLinkManager()
for (IssueLink link in linkMgr.getOutwardLinks(issue.id)) {
log.debug("linked issue type: " + link.issueLinkType.name)
log.debug("linked issue key: " + link.getSourceObject().getKey())
log.debug("linked issue status (name): " + link.getSourceObject().getStatus().getName())
log.debug("linked issue status (id): " + link.getSourceObject().getStatus().getId())
if (!link.getSourceObject().getStatus().getName().contains("Verified")) {
log.debug("issue " + link.getSourceObject().getKey() + " is not in Active state")
invalidInputException = new InvalidInputException("Linked issue is not in a status of Template")
throw invalidInputException
}
}
here,.. it should check all the linked issues are in verified state and then change the status of the issue.
All i get is invalid error exception : null.
could anyone please help???/
I am guessing the exception trace shows the exception is occurring in the for loop condition. (It is a good idea to get the stack trace whenever an exception occurs because it helps with debugging)
You could try this instead as your for loop condition
for(linkMgr.getLinkCollectionOverrideSecurity(<issuekey>).getAllIssues())
Hey shivaram,
Try the below code in your validator
int count=issue.getLinkedIssues("Includes").size()
int status
issue.getLinkedIssues('Includes').each{
if(it.getStatus().getName()="Verified")
{status++}
}
if(count==0||count==status){
return true}
else{return false}
I hope this is what your are looking for.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.