Package com.jcabi.github
Interface Stars
-
@Immutable public interface Stars
Github starring API.- Since:
- 0.15
- Version:
- $Id: 2286c3c47f19435da070165b18471027e97b72cb $
- Author:
- Paul Polishchuk (ppol@ua.fm)
- See Also:
- Starring API
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Repo
repo()
Owner of them.void
star()
Star repository.boolean
starred()
Check if repo is starred.void
unstar()
Unstar repository.
-
-
-
Method Detail
-
repo
Repo repo()
Owner of them.- Returns:
- Repo
-
starred
boolean starred() throws IOException
Check if repo is starred.- Returns:
- True if repo is starred
- Throws:
IOException
- - If anything goes wrong.
-
star
void star() throws IOException
Star repository.- Throws:
IOException
- - If anything goes wrong.
-
unstar
void unstar() throws IOException
Unstar repository.- Throws:
IOException
- - If anything goes wrong.
-
-