Package com.jcabi.github
Interface Assignees
-
@Immutable public interface Assignees
GitHub Assignees.- Since:
- 0.7
- Version:
- $Id: f65b7fac3b6620076e66c9b435475448acfe0666 $
- Author:
- Paul Polishchuk ([email protected])
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
check(String login)
Check if a particular user is an assignee for a repository.Iterable<User>
iterate()
Iterate all available assignees.
-
-
-
Method Detail
-
iterate
Iterable<User> iterate()
Iterate all available assignees.- Returns:
- Iterator of available assignees to which issues may be assigned
- See Also:
- List assignees
-
check
boolean check(String login) throws IOException
Check if a particular user is an assignee for a repository.- Parameters:
login
- Login of user to be checked- Returns:
- True if given assignee login belongs to an assignee for the repository
- Throws:
IOException
- If there is any I/O problem- See Also:
- Check assignee
-
-