public interface Issues
| Modifier and Type | Method and Description |
|---|---|
Issue |
create(String summary,
String description)
|
Issue |
create(String summary,
String description,
Map<Field,FieldValue> fields)
|
Optional<Issue> |
get(String id)
The
Issue with the given id, if it exists. |
Project |
project()
|
Stream<Issue> |
stream()
|
Stream<Issue> stream() throws IOException, UnauthorizedException
Stream with all issues for this projectIOException - if the server is unavailableUnauthorizedException - if the user's Login is not authorized to access this
resourceOptional<Issue> get(String id) throws IOException, UnauthorizedException
Issue with the given id, if it exists.id - the issue's idIssue with the given id, if it exists.IOException - if the server is unavailableUnauthorizedException - if the user's Login is unauthorized to perform this
operationIssue create(String summary, String description) throws IOException, UnauthorizedException
summary - the issue's summarydescription - the issue's descriptionIssueIOException - if the server is unavailableUnauthorizedException - if the user's Login is unauthorized to perform this
operationIssue create(String summary, String description, Map<Field,FieldValue> fields) throws IOException, UnauthorizedException
summary - the issue's summarydescription - the issue's descriptionfields - the issue's fieldsIssueIOException - if the server is unavailableUnauthorizedException - if the user's Login is unauthorized to perform this
operationCopyright © 2017–2018 George Aristy. All rights reserved.