view mercurial-common/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/command/TagCommand.java @ 95:6c1cff1f61cc Darjeeling-5.0.x

copyright =>2010
author Pavel.Sher
date Tue, 02 Feb 2010 20:59:41 +0300
parents 1490e2981799
children 5198b02fc5e9
line wrap: on
line source
/*
 * Copyright 2000-2010 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 org.jetbrains.annotations.NotNull;
import com.intellij.execution.configurations.GeneralCommandLine;
import jetbrains.buildServer.vcs.VcsException;

public class TagCommand extends BaseCommand {
  private String myTag;
  private String myRevId;

  public TagCommand(@NotNull Settings settings) {
    super(settings);
  }

  public void setTag(@NotNull final String tag) {
    myTag = tag;
  }

  public void setRevId(@NotNull final String revId) {
    myRevId = revId;
  }

  public void execute() throws VcsException {
    GeneralCommandLine cli = createCommandLine();
    cli.addParameter("tag");
    cli.addParameter("-r");
    cli.addParameter(myRevId);
    cli.addParameter(myTag);
    runCommand(cli);
  }
}