Class AbstractUntagCommand
- java.lang.Object
-
- org.apache.maven.scm.command.AbstractCommand
-
- org.apache.maven.scm.command.untag.AbstractUntagCommand
-
- All Implemented Interfaces:
Command
- Direct Known Subclasses:
GitUntagCommand,JGitUntagCommand,SvnUntagCommand
public abstract class AbstractUntagCommand extends AbstractCommand
Removes a tag.
-
-
Field Summary
-
Fields inherited from class org.apache.maven.scm.command.AbstractCommand
logger
-
-
Constructor Summary
Constructors Constructor Description AbstractUntagCommand()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description ScmResultexecuteCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)protected abstract ScmResultexecuteUntagCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmUntagParameters scmUntagParameters)Execute untag command.-
Methods inherited from class org.apache.maven.scm.command.AbstractCommand
execute
-
-
-
-
Constructor Detail
-
AbstractUntagCommand
public AbstractUntagCommand()
-
-
Method Detail
-
executeUntagCommand
protected abstract ScmResult executeUntagCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmUntagParameters scmUntagParameters) throws ScmException
Execute untag command.- Parameters:
repository- scm repofileSet- set of files (unused)scmUntagParameters- parameters used by untag implementations- Returns:
- result of untag command
- Throws:
ScmException- in case of error
-
executeCommand
public ScmResult executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
- Specified by:
executeCommandin classAbstractCommand- Throws:
ScmException
-
-