
* stable-3.0: Update git submodules Update git submodules Update git submodules Fix documentation of UI selection Set version to 2.16.12-SNAPSHOT Set version to 2.16.11 Update git submodules Revert "GerritServer: Silence non-critical logs from JGit's FileSnapshot" Revert "GerritServer: Silence non-critical logs from JGit's FS" Revert "Upgrade JGit to 5.1.10.201908230655-r" Revert "Stop using deprecated DirCacheEntry#setLastModified(long)" Update git submodules Update git submodules Update git submodules Update git submodules Update git submodules Update git submodules Set version to 2.15.17-SNAPSHOT Update git submodules Update git submodules Revert "Upgrade JGit to 5.3.4.201908231101-r" Set version to 2.15.16 Revert "CreateAccount: Fail early when invalid SSH key is given" Update git submodules tools/eclipse/project.py: Fix typo of bazelisk Set XSRF on '/' under PolyGerrit Migrate from old-style legacy .java provider to the new JavaInfo. Remove deleted rules for the new added section Support bazelisk or bazel in tools/eclipse/project.py Rework imports in project.py Update project.py to use argparse AccountIT: Test that account is not created with invalid email CreateAccount: Fail early when invalid SSH key is given Update git submodules GerritServer: Silence non-critical logs from JGit's FS GerritServer: Silence non-critical logs from JGit's FileSnapshot Stop using deprecated DirCacheEntry#setLastModified(long) ProjectState: Fix 'invalid type qualification' javadoc warning Upgrade JGit to 5.3.4.201908231101-r Documentation: refresh IntelliJ IDEA developer documentation Documentation: update external links to Bazel Use base url for commentlink Update git submodules Update git submodules Don't store LabelTypes in ProjectState Upgrade highlight.js to latest master revision Update git submodules Update git submodules Update git submodules StarredChangesUtil: Stop using deprecated RefDatabase.getRef Suppress warnings about deprecated BaseReceivePack DeleteRef: Stop using deprecated RefDatabase.getRef Upgrade elasticsearch-rest-client to 7.3.1 Add .gitreview file Remove vestigal GWT plugin loading hooks Upgrade JGit to 5.1.10.201908230655-r DeleteDraftComments: Don't update change modified timestamp ChangeIT: set submittableAfterLosingPermissions private Rebase: Don't swallow caught exception Output NoteDb migration progress to Flogger Update git submodules Remove AccountPatchReview data when change gets auto-abandoned DefaultChangeReportFormatter: Make constructor and urlFormatter visible StarredChangesUtil: Fix NPE when ref to be deleted doesn't exist StarredChangesUtil: Throw LockFailureException on LOCK_FAILURE Add test for creating a change on a non-existing base change Rebase: Do not fail with 500 ISE if non-existing change is given as base Fix detecting changes of parent trees when computing change kind for merge commit Remove duplicate descriptions of fields in Requirement JSON entity Allow to set content type in the plugin REST API interface InternalAccountQuery: Add back the oneByExternalId method Set version to 2.16.11-SNAPSHOT Revert "Migrate from old-style legacy .java provider to the new JavaInfo." Catch all exceptions for reporting on Schema_130 migration Update git submodules Migrate from old-style legacy .java provider to the new JavaInfo. Update git submodules Update git submodules AuthRequest: Fix Javadoc for return values ChangeApi: Add methods to get change comments/drafts as list Update git submodules ListChangeComments: Extend ListChangeDrafts Upgrade Go Bazel rules to the latest version detach -> detached Fix anchor tag for settings page Add support for Elasticsearch version 7.3.* PrologEnvironment: Reduce "setting reductionLimit" log spam ElasticContainer: Upgrade to 6.8.2 image for V6_8 tests Fix typo: program Fix email token routing Clarify usage of 'parent' option in list files API Remove unused Skylark patch file Files: Use Gerrit API to get revision parents Fix broken link for rest-api-projects.html#commentlink-info Add support for Elasticsearch version 6.8.x Upgrade elasticsearch-rest-client to 7.2.1 Add support for "Link Another Identity" in gr-identities Update git submodules CommitApi: Add method to get commit info Consolidate all CommitApi tests into a single class Files: Validate parent option to prevent internal server error RevisionIT: Assert that files(base) only works for patch set revisions Fix and expand documentation of REST API to get revision files RevisionIT#files: Simplify assertion Update git submodules Update git submodules Update git submodules Update git submodules Remove default bug tracker from _feedbackUrl PG: Add shortcuts for dashboard and watched changes PG: Allow empty label values Remove token param from getCapabilities Add an extension point to show a small banner next to the search bar Fix gr-group-audit-log to use tbody Change-Id: Iaf877b737f115d4fe95af74f8284eec19112a21d
694 lines
21 KiB
Java
694 lines
21 KiB
Java
// Copyright (C) 2013 The Android Open Source Project
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package com.google.gerrit.extensions.api.changes;
|
|
|
|
import com.google.common.collect.ImmutableListMultimap;
|
|
import com.google.common.collect.Sets;
|
|
import com.google.gerrit.common.Nullable;
|
|
import com.google.gerrit.extensions.client.ListChangesOption;
|
|
import com.google.gerrit.extensions.client.ReviewerState;
|
|
import com.google.gerrit.extensions.common.AccountInfo;
|
|
import com.google.gerrit.extensions.common.ChangeInfo;
|
|
import com.google.gerrit.extensions.common.ChangeMessageInfo;
|
|
import com.google.gerrit.extensions.common.CommentInfo;
|
|
import com.google.gerrit.extensions.common.CommitMessageInput;
|
|
import com.google.gerrit.extensions.common.EditInfo;
|
|
import com.google.gerrit.extensions.common.MergePatchSetInput;
|
|
import com.google.gerrit.extensions.common.PureRevertInfo;
|
|
import com.google.gerrit.extensions.common.RobotCommentInfo;
|
|
import com.google.gerrit.extensions.common.SuggestedReviewerInfo;
|
|
import com.google.gerrit.extensions.restapi.NotImplementedException;
|
|
import com.google.gerrit.extensions.restapi.RestApiException;
|
|
import java.util.Arrays;
|
|
import java.util.EnumSet;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
|
|
public interface ChangeApi {
|
|
String id();
|
|
|
|
/**
|
|
* Look up the current revision for the change.
|
|
*
|
|
* <p><strong>Note:</strong> This method eagerly reads the revision. Methods that mutate the
|
|
* revision do not necessarily re-read the revision. Therefore, calling a getter method on an
|
|
* instance after calling a mutation method on that same instance is not guaranteed to reflect the
|
|
* mutation. It is not recommended to store references to {@code RevisionApi} instances.
|
|
*
|
|
* @return API for accessing the revision.
|
|
* @throws RestApiException if an error occurred.
|
|
*/
|
|
default RevisionApi current() throws RestApiException {
|
|
return revision("current");
|
|
}
|
|
|
|
/**
|
|
* Look up a revision of a change by number.
|
|
*
|
|
* @see #current()
|
|
*/
|
|
default RevisionApi revision(int id) throws RestApiException {
|
|
return revision(Integer.toString(id));
|
|
}
|
|
|
|
/**
|
|
* Look up a revision of a change by commit SHA-1 or other supported revision string.
|
|
*
|
|
* @see #current()
|
|
*/
|
|
RevisionApi revision(String id) throws RestApiException;
|
|
|
|
/**
|
|
* Look up the reviewer of the change.
|
|
*
|
|
* <p>
|
|
*
|
|
* @param id ID of the account, can be a string of the format "Full Name
|
|
* <mail@example.com>", just the email address, a full name if it is unique, an account
|
|
* ID, a user name or 'self' for the calling user.
|
|
* @return API for accessing the reviewer.
|
|
* @throws RestApiException if id is not account ID or is a user that isn't known to be a reviewer
|
|
* for this change.
|
|
*/
|
|
ReviewerApi reviewer(String id) throws RestApiException;
|
|
|
|
default void abandon() throws RestApiException {
|
|
abandon(new AbandonInput());
|
|
}
|
|
|
|
void abandon(AbandonInput in) throws RestApiException;
|
|
|
|
default void restore() throws RestApiException {
|
|
restore(new RestoreInput());
|
|
}
|
|
|
|
void restore(RestoreInput in) throws RestApiException;
|
|
|
|
default void move(String destination) throws RestApiException {
|
|
MoveInput in = new MoveInput();
|
|
in.destinationBranch = destination;
|
|
move(in);
|
|
}
|
|
|
|
void move(MoveInput in) throws RestApiException;
|
|
|
|
void setPrivate(boolean value, @Nullable String message) throws RestApiException;
|
|
|
|
default void setPrivate(boolean value) throws RestApiException {
|
|
setPrivate(value, null);
|
|
}
|
|
|
|
void setWorkInProgress(@Nullable String message) throws RestApiException;
|
|
|
|
void setReadyForReview(@Nullable String message) throws RestApiException;
|
|
|
|
default void setWorkInProgress() throws RestApiException {
|
|
setWorkInProgress(null);
|
|
}
|
|
|
|
default void setReadyForReview() throws RestApiException {
|
|
setReadyForReview(null);
|
|
}
|
|
|
|
/**
|
|
* Ignore or un-ignore this change.
|
|
*
|
|
* @param ignore ignore the change if true
|
|
*/
|
|
void ignore(boolean ignore) throws RestApiException;
|
|
|
|
/**
|
|
* Check if this change is ignored.
|
|
*
|
|
* @return true if the change is ignored
|
|
*/
|
|
boolean ignored() throws RestApiException;
|
|
|
|
/**
|
|
* Mark this change as reviewed/unreviewed.
|
|
*
|
|
* @param reviewed flag to decide if this change should be marked as reviewed ({@code true}) or
|
|
* unreviewed ({@code false})
|
|
*/
|
|
void markAsReviewed(boolean reviewed) throws RestApiException;
|
|
|
|
/**
|
|
* Create a new change that reverts this change.
|
|
*
|
|
* @see Changes#id(int)
|
|
*/
|
|
default ChangeApi revert() throws RestApiException {
|
|
return revert(new RevertInput());
|
|
}
|
|
|
|
/**
|
|
* Create a new change that reverts this change.
|
|
*
|
|
* @see Changes#id(int)
|
|
*/
|
|
ChangeApi revert(RevertInput in) throws RestApiException;
|
|
|
|
/** Create a merge patch set for the change. */
|
|
ChangeInfo createMergePatchSet(MergePatchSetInput in) throws RestApiException;
|
|
|
|
default List<ChangeInfo> submittedTogether() throws RestApiException {
|
|
SubmittedTogetherInfo info =
|
|
submittedTogether(
|
|
EnumSet.noneOf(ListChangesOption.class), EnumSet.noneOf(SubmittedTogetherOption.class));
|
|
return info.changes;
|
|
}
|
|
|
|
default SubmittedTogetherInfo submittedTogether(EnumSet<SubmittedTogetherOption> options)
|
|
throws RestApiException {
|
|
return submittedTogether(EnumSet.noneOf(ListChangesOption.class), options);
|
|
}
|
|
|
|
SubmittedTogetherInfo submittedTogether(
|
|
EnumSet<ListChangesOption> listOptions, EnumSet<SubmittedTogetherOption> submitOptions)
|
|
throws RestApiException;
|
|
|
|
/** Publishes a draft change. */
|
|
@Deprecated
|
|
default void publish() {
|
|
throw new UnsupportedOperationException("draft workflow is discontinued");
|
|
}
|
|
|
|
/** Rebase the current revision of a change using default options. */
|
|
default void rebase() throws RestApiException {
|
|
rebase(new RebaseInput());
|
|
}
|
|
|
|
/** Rebase the current revision of a change. */
|
|
void rebase(RebaseInput in) throws RestApiException;
|
|
|
|
/** Deletes a change. */
|
|
void delete() throws RestApiException;
|
|
|
|
String topic() throws RestApiException;
|
|
|
|
void topic(String topic) throws RestApiException;
|
|
|
|
IncludedInInfo includedIn() throws RestApiException;
|
|
|
|
default AddReviewerResult addReviewer(String reviewer) throws RestApiException {
|
|
AddReviewerInput in = new AddReviewerInput();
|
|
in.reviewer = reviewer;
|
|
return addReviewer(in);
|
|
}
|
|
|
|
AddReviewerResult addReviewer(AddReviewerInput in) throws RestApiException;
|
|
|
|
SuggestedReviewersRequest suggestReviewers() throws RestApiException;
|
|
|
|
default SuggestedReviewersRequest suggestReviewers(String query) throws RestApiException {
|
|
return suggestReviewers().withQuery(query);
|
|
}
|
|
|
|
default SuggestedReviewersRequest suggestCcs(String query) throws RestApiException {
|
|
return suggestReviewers().forCc().withQuery(query);
|
|
}
|
|
|
|
/**
|
|
* Retrieve reviewers ({@code ReviewerState.REVIEWER} and {@code ReviewerState.CC}) on the change.
|
|
*/
|
|
List<ReviewerInfo> reviewers() throws RestApiException;
|
|
|
|
ChangeInfo get(
|
|
EnumSet<ListChangesOption> options, ImmutableListMultimap<String, String> pluginOptions)
|
|
throws RestApiException;
|
|
|
|
default ChangeInfo get(ImmutableListMultimap<String, String> pluginOptions)
|
|
throws RestApiException {
|
|
return get(EnumSet.noneOf(ListChangesOption.class), pluginOptions);
|
|
}
|
|
|
|
default ChangeInfo get(EnumSet<ListChangesOption> options) throws RestApiException {
|
|
return get(options, ImmutableListMultimap.of());
|
|
}
|
|
|
|
default ChangeInfo get(Iterable<ListChangesOption> options) throws RestApiException {
|
|
return get(Sets.newEnumSet(options, ListChangesOption.class));
|
|
}
|
|
|
|
default ChangeInfo get(ListChangesOption... options) throws RestApiException {
|
|
return get(Arrays.asList(options));
|
|
}
|
|
|
|
/**
|
|
* {@link #get(ListChangesOption...)} with all options included, except for the following.
|
|
*
|
|
* <ul>
|
|
* <li>{@code CHECK} is omitted, to skip consistency checks.
|
|
* <li>{@code SKIP_MERGEABLE} is omitted, so the {@code mergeable} bit <em>is</em> set.
|
|
* <li>{@code SKIP_DIFFSTAT} is omitted to ensure diffstat calculations.
|
|
* </ul>
|
|
*/
|
|
default ChangeInfo get() throws RestApiException {
|
|
return get(
|
|
EnumSet.complementOf(
|
|
EnumSet.of(
|
|
ListChangesOption.CHECK,
|
|
ListChangesOption.SKIP_MERGEABLE,
|
|
ListChangesOption.SKIP_DIFFSTAT)));
|
|
}
|
|
|
|
/** {@link #get(ListChangesOption...)} with no options included. */
|
|
default ChangeInfo info() throws RestApiException {
|
|
return get(EnumSet.noneOf(ListChangesOption.class));
|
|
}
|
|
|
|
/**
|
|
* Retrieve change edit when exists.
|
|
*
|
|
* @deprecated Replaced by {@link ChangeApi#edit()} in combination with {@link
|
|
* ChangeEditApi#get()}.
|
|
*/
|
|
@Deprecated
|
|
default EditInfo getEdit() throws RestApiException {
|
|
return edit().get().orElse(null);
|
|
}
|
|
|
|
/**
|
|
* Provides access to an API regarding the change edit of this change.
|
|
*
|
|
* @return a {@code ChangeEditApi} for the change edit of this change
|
|
* @throws RestApiException if the API isn't accessible
|
|
*/
|
|
ChangeEditApi edit() throws RestApiException;
|
|
|
|
/** Create a new patch set with a new commit message. */
|
|
default void setMessage(String message) throws RestApiException {
|
|
CommitMessageInput in = new CommitMessageInput();
|
|
in.message = message;
|
|
setMessage(in);
|
|
}
|
|
|
|
/** Create a new patch set with a new commit message. */
|
|
void setMessage(CommitMessageInput in) throws RestApiException;
|
|
|
|
/** Set hashtags on a change */
|
|
void setHashtags(HashtagsInput input) throws RestApiException;
|
|
|
|
/**
|
|
* Get hashtags on a change.
|
|
*
|
|
* @return hashtags
|
|
* @throws RestApiException
|
|
*/
|
|
Set<String> getHashtags() throws RestApiException;
|
|
|
|
/** Set the assignee of a change. */
|
|
AccountInfo setAssignee(AssigneeInput input) throws RestApiException;
|
|
|
|
/** Get the assignee of a change. */
|
|
AccountInfo getAssignee() throws RestApiException;
|
|
|
|
/** Get all past assignees. */
|
|
List<AccountInfo> getPastAssignees() throws RestApiException;
|
|
|
|
/**
|
|
* Delete the assignee of a change.
|
|
*
|
|
* @return the assignee that was deleted, or null if there was no assignee.
|
|
*/
|
|
AccountInfo deleteAssignee() throws RestApiException;
|
|
|
|
/**
|
|
* Get all published comments on a change.
|
|
*
|
|
* @return comments in a map keyed by path; comments have the {@code revision} field set to
|
|
* indicate their patch set.
|
|
* @throws RestApiException
|
|
*/
|
|
Map<String, List<CommentInfo>> comments() throws RestApiException;
|
|
|
|
/**
|
|
* Get all published comments on a change as a list.
|
|
*
|
|
* @return comments as a list; comments have the {@code revision} field set to indicate their
|
|
* patch set.
|
|
* @throws RestApiException
|
|
*/
|
|
List<CommentInfo> commentsAsList() throws RestApiException;
|
|
|
|
/**
|
|
* Get all robot comments on a change.
|
|
*
|
|
* @return robot comments in a map keyed by path; robot comments have the {@code revision} field
|
|
* set to indicate their patch set.
|
|
* @throws RestApiException
|
|
*/
|
|
Map<String, List<RobotCommentInfo>> robotComments() throws RestApiException;
|
|
|
|
/**
|
|
* Get all draft comments for the current user on a change.
|
|
*
|
|
* @return drafts in a map keyed by path; comments have the {@code revision} field set to indicate
|
|
* their patch set.
|
|
* @throws RestApiException
|
|
*/
|
|
Map<String, List<CommentInfo>> drafts() throws RestApiException;
|
|
|
|
/**
|
|
* Get all draft comments for the current user on a change as a list.
|
|
*
|
|
* @return drafts as a list; comments have the {@code revision} field set to indicate their patch
|
|
* set.
|
|
* @throws RestApiException
|
|
*/
|
|
List<CommentInfo> draftsAsList() throws RestApiException;
|
|
|
|
ChangeInfo check() throws RestApiException;
|
|
|
|
ChangeInfo check(FixInput fix) throws RestApiException;
|
|
|
|
void index() throws RestApiException;
|
|
|
|
/** Check if this change is a pure revert of the change stored in revertOf. */
|
|
PureRevertInfo pureRevert() throws RestApiException;
|
|
|
|
/** Check if this change is a pure revert of claimedOriginal (SHA1 in 40 digit hex). */
|
|
PureRevertInfo pureRevert(String claimedOriginal) throws RestApiException;
|
|
|
|
/**
|
|
* Get all messages of a change with detailed account info.
|
|
*
|
|
* @return a list of messages sorted by their creation time.
|
|
* @throws RestApiException
|
|
*/
|
|
List<ChangeMessageInfo> messages() throws RestApiException;
|
|
|
|
/**
|
|
* Look up a change message of a change by its id.
|
|
*
|
|
* @param id the id of the change message. In NoteDb, this id is the {@code ObjectId} of a commit
|
|
* on the change meta branch.
|
|
* @return API for accessing a change message.
|
|
* @throws RestApiException if the id is invalid.
|
|
*/
|
|
ChangeMessageApi message(String id) throws RestApiException;
|
|
|
|
abstract class SuggestedReviewersRequest {
|
|
private String query;
|
|
private int limit;
|
|
private boolean excludeGroups;
|
|
private ReviewerState reviewerState = ReviewerState.REVIEWER;
|
|
|
|
public abstract List<SuggestedReviewerInfo> get() throws RestApiException;
|
|
|
|
public SuggestedReviewersRequest withQuery(String query) {
|
|
this.query = query;
|
|
return this;
|
|
}
|
|
|
|
public SuggestedReviewersRequest withLimit(int limit) {
|
|
this.limit = limit;
|
|
return this;
|
|
}
|
|
|
|
public SuggestedReviewersRequest excludeGroups(boolean excludeGroups) {
|
|
this.excludeGroups = excludeGroups;
|
|
return this;
|
|
}
|
|
|
|
public SuggestedReviewersRequest forCc() {
|
|
this.reviewerState = ReviewerState.CC;
|
|
return this;
|
|
}
|
|
|
|
public String getQuery() {
|
|
return query;
|
|
}
|
|
|
|
public int getLimit() {
|
|
return limit;
|
|
}
|
|
|
|
public boolean getExcludeGroups() {
|
|
return excludeGroups;
|
|
}
|
|
|
|
public ReviewerState getReviewerState() {
|
|
return reviewerState;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* A default implementation which allows source compatibility when adding new methods to the
|
|
* interface.
|
|
*/
|
|
class NotImplemented implements ChangeApi {
|
|
@Override
|
|
public String id() {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public ReviewerApi reviewer(String id) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public RevisionApi revision(String id) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void abandon(AbandonInput in) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void restore(RestoreInput in) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void move(MoveInput in) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void setPrivate(boolean value, @Nullable String message) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void setWorkInProgress(String message) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void setReadyForReview(String message) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public ChangeApi revert(RevertInput in) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void rebase(RebaseInput in) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void delete() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public String topic() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void topic(String topic) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public IncludedInInfo includedIn() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public AddReviewerResult addReviewer(AddReviewerInput in) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public SuggestedReviewersRequest suggestReviewers() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public SuggestedReviewersRequest suggestReviewers(String query) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public List<ReviewerInfo> reviewers() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public ChangeInfo get(
|
|
EnumSet<ListChangesOption> options, ImmutableListMultimap<String, String> pluginOptions)
|
|
throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void setMessage(CommitMessageInput in) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public ChangeEditApi edit() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void setHashtags(HashtagsInput input) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public Set<String> getHashtags() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public AccountInfo setAssignee(AssigneeInput input) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public AccountInfo getAssignee() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public List<AccountInfo> getPastAssignees() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public AccountInfo deleteAssignee() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public Map<String, List<CommentInfo>> comments() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public List<CommentInfo> commentsAsList() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public Map<String, List<RobotCommentInfo>> robotComments() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public Map<String, List<CommentInfo>> drafts() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public List<CommentInfo> draftsAsList() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public ChangeInfo check() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public ChangeInfo check(FixInput fix) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void index() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public List<ChangeInfo> submittedTogether() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public SubmittedTogetherInfo submittedTogether(EnumSet<SubmittedTogetherOption> options)
|
|
throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public SubmittedTogetherInfo submittedTogether(
|
|
EnumSet<ListChangesOption> a, EnumSet<SubmittedTogetherOption> b) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public ChangeInfo createMergePatchSet(MergePatchSetInput in) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void ignore(boolean ignore) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public boolean ignored() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public void markAsReviewed(boolean reviewed) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public PureRevertInfo pureRevert() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public PureRevertInfo pureRevert(String claimedOriginal) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public List<ChangeMessageInfo> messages() throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
@Override
|
|
public ChangeMessageApi message(String id) throws RestApiException {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|