view mercurial-server/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/command/CollectChangesCommand.java @ 979:2b1bd4bca6ad Indore-2017.2.x

TW-50054 support custom clone path whitelist
author Dmitry Neverov <dmitry.neverov@gmail.com>
date Wed, 24 Jan 2018 13:49:01 +0100
parents 38adef4f1b8f
children
line wrap: on
line source
/*
 * Copyright 2000-2018 JetBrains s.r.o.
 *
 * 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 jetbrains.buildServer.buildTriggers.vcs.mercurial.command;

import jetbrains.buildServer.vcs.VcsException;
import org.jetbrains.annotations.NotNull;

import java.util.List;

/**
 * @author dmitry.neverov
 */
public abstract class CollectChangesCommand {

  protected List<String> myFromRevisions;
  protected String myToRevision;
  protected boolean myIncludeFromRevision;

  @NotNull
  public abstract List<ChangeSet> call(@NotNull List<String> fromCommits, @NotNull String toCommit) throws VcsException;

  public abstract List<ChangeSet> call() throws VcsException;

  public CollectChangesCommand fromRevision(@NotNull List<String> fromRevisions) {
    myFromRevisions = fromRevisions;
    return this;
  }

  public CollectChangesCommand toRevision(@NotNull String toRevision) {
    myToRevision = toRevision;
    return this;
  }

  public CollectChangesCommand includeFromRevision(boolean doInclude) {
    myIncludeFromRevision = doInclude;
    return this;
  }
}