Package com.jcabi.github
Interface Assignees
-
@Immutable public interface Assignees
Github Assignees.- Since:
- 0.7
- Version:
- $Id: 2bb78f24a156c18848e6d6f361b1d2b41d73fe57 $
- Author:
- Paul Polishchuk (ppol@ua.fm)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
check(String login)
Check 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 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
-
-