public interface Projects
projects from the YouTrack server.Stream<Project> stream() throws IOException, UnauthorizedException
Stream with all accessible projects by the user's
LoginIOException - if the server is unavailableUnauthorizedException - if the user's Login is not authorized to access this
resourceOptional<Project> get(String id) throws IOException, UnauthorizedException
Project with the given id, if any.id - the project's idProject with the given id, if anyIOException - if the server is unavailableUnauthorizedException - if the user's Login is not authorized to perform this
operationProject create(String id, String name, User leader) throws IOException, UnauthorizedException
Project.id - unique identifier of the project to be created. This short name will be used as
prefix in issue IDs for this project.name - unique, full name of the new project.leader - user to be assigned as the project's leader.IOException - if the server is unavailableUnauthorizedException - if the user's Login is not authorized to perform this
operationCopyright © 2017–2018 George Aristy. All rights reserved.