hello i am new on jira. i am writing a validation. i wrote this
from com.atlassian.jira.issue import Issue
user=issue.getReporterId()
user returns string username. i have to find user's group. how can i do that. it must be return string value.
Hey Richie,
I was just browsing through the libs and you might be able to solve this using:
abstract SortedSet<String> getGroupNamesForUser(String userName) Returns a collection of the names of the groups that the user belongs to.
OR
abstract SortedSet<Group> getGroupsForUser(String userName) Returns a collection of Group objects that the user belongs to.
From: https://developer.atlassian.com/static/javadoc/jira/4.4.1/reference/com/atlassian/jira/user/util/UserUtil.html
That is, if you are willing to pull the username from the reporter instead of its ID.
I hope that helps. Didn't really work with the API beyond the REST interface myself yet.
Regards,
Philipp
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.