Package com.jcabi.github
Interface Organizations
-
@Immutable public interface Organizations
Github organizations.- Since:
- 0.24
- Version:
- $Id: 90740270dc0e61265c87ef7d06ae05975127a2aa $
- Author:
- Paul Polishchuk (ppol@ua.fm), Chris Rebert (github@chrisrebert.com)
- See Also:
- Organizations API
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Organization
get(String login)
Get specific organization by name.Iterable<Organization>
iterate()
Iterate over organizations of the currently logged-in user.
-
-
-
Method Detail
-
get
Organization get(String login)
Get specific organization by name.- Parameters:
login
- Login name of the organization.- Returns:
- Organization
- See Also:
- Get a Single Organization
-
iterate
Iterable<Organization> iterate()
Iterate over organizations of the currently logged-in user.- Returns:
- Iterator of Organizations
- See Also:
- List Your Organizations
-
-