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
,SvnUntagCommand
public abstract class AbstractUntagCommand extends AbstractCommand
-
-
Constructor Summary
Constructors Constructor Description AbstractUntagCommand()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description ScmResult
executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected abstract ScmResult
executeUntagCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmUntagParameters scmUntagParameters)
execute untag command-
Methods inherited from class org.apache.maven.scm.command.AbstractCommand
execute, getLogger, setLogger
-
-
-
-
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:
executeCommand
in classAbstractCommand
- Throws:
ScmException
-
-