Interface ReviewerApi
-
- All Known Implementing Classes:
ReviewerApi.NotImplemented
public interface ReviewerApi
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ReviewerApi.NotImplemented
A default implementation which allows source compatibility when adding new methods to the interface.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
deleteVote(DeleteVoteInput input)
void
deleteVote(String label)
void
remove()
void
remove(DeleteReviewerInput input)
Map<String,Short>
votes()
-
-
-
Method Detail
-
votes
Map<String,Short> votes() throws RestApiException
- Throws:
RestApiException
-
deleteVote
void deleteVote(String label) throws RestApiException
- Throws:
RestApiException
-
deleteVote
void deleteVote(DeleteVoteInput input) throws RestApiException
- Throws:
RestApiException
-
remove
void remove() throws RestApiException
- Throws:
RestApiException
-
remove
void remove(DeleteReviewerInput input) throws RestApiException
- Throws:
RestApiException
-
-