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 voiddeleteVote(DeleteVoteInput input)voiddeleteVote(String label)voidremove()voidremove(DeleteReviewerInput input)Map<String,Short>votes()
-
-
-
Method Detail
-
votes
public Map<String,Short> votes() throws RestApiException
- Specified by:
votesin interfaceReviewerApi- Throws:
RestApiException
-
deleteVote
public void deleteVote(String label) throws RestApiException
- Specified by:
deleteVotein interfaceReviewerApi- Throws:
RestApiException
-
deleteVote
public void deleteVote(DeleteVoteInput input) throws RestApiException
- Specified by:
deleteVotein interfaceReviewerApi- Throws:
RestApiException
-
remove
public void remove() throws RestApiException- Specified by:
removein interfaceReviewerApi- Throws:
RestApiException
-
remove
public void remove(DeleteReviewerInput input) throws RestApiException
- Specified by:
removein interfaceReviewerApi- Throws:
RestApiException
-
-