public interface UsersOfProject
User user(String login) throws IOException, UnauthorizedException
User with the given login.
Note:
Unfortunately, YouTrack's response - 403 Forbidden - does not allow clients
to differentiate between cases when login is not found vs. cases when the user's
Session is not authorized to read the user's information.
login - the user's loginUser with the given loginIOException - if the server is unreachableUnauthorizedException - if the user's Session is not authorized to perform
this operation or if the given login does not existStream<User> assignees() throws IOException, UnauthorizedException
users to which issues can be assigned.IOException - if the server is unreachableUnauthorizedException - if the user's Session is not authorized to perform
this operationCopyright © 2017 George Aristy. All rights reserved.