Class ReviewerApi.NotImplemented
- java.lang.Object
-
- com.google.gerrit.extensions.api.changes.ReviewerApi.NotImplemented
-
- All Implemented Interfaces:
ReviewerApi
- Enclosing interface:
- ReviewerApi
public static class ReviewerApi.NotImplemented extends Object implements ReviewerApi
A default implementation which allows source compatibility when adding new methods to the interface.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.google.gerrit.extensions.api.changes.ReviewerApi
ReviewerApi.NotImplemented
-
-
Constructor Summary
Constructors Constructor Description NotImplemented()
-
Method Summary
All Methods Instance Methods Concrete 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
public Map<String,Short> votes() throws RestApiException
- Specified by:
votes
in interfaceReviewerApi
- Throws:
RestApiException
-
deleteVote
public void deleteVote(String label) throws RestApiException
- Specified by:
deleteVote
in interfaceReviewerApi
- Throws:
RestApiException
-
deleteVote
public void deleteVote(DeleteVoteInput input) throws RestApiException
- Specified by:
deleteVote
in interfaceReviewerApi
- Throws:
RestApiException
-
remove
public void remove() throws RestApiException
- Specified by:
remove
in interfaceReviewerApi
- Throws:
RestApiException
-
remove
public void remove(DeleteReviewerInput input) throws RestApiException
- Specified by:
remove
in interfaceReviewerApi
- Throws:
RestApiException
-
-