I want to remove user from project roles.I am using the following method
ProjectRoleService.removeDefaultActorsFromProjectRole(com.atlassian.crowd.embedded.api.User currentUser, Collection<String> actors,ProjectRole projectRole, String actorType, ErrorCollection errorCollection)
I was passing ErrorCollection as null in JIRA 5.1.8 and it was working fine.But in JIRA 6.2.7 I am getting NullPointerException .
Please let me know how to initialize the ErrorCollection object ?
Thanks in advance.
import com.atlassian.jira.util.SimpleErrorCollection;
SimpleErrorCollection errorCollection = new SimpleErrorCollection();
And you might want to use projectRoleService.removeAllRoleActorsByNameAndType instead. See: https://docs.atlassian.com/jira/latest/com/atlassian/jira/bc/projectroles/ProjectRoleService.html
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.