use of org.apache.maven.scm.provider.vss.commands.checkout.VssCheckOutCommand in project maven-scm by apache.
the class VssScmProvider method checkout.
/**
* {@inheritDoc}
*/
public CheckOutScmResult checkout(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
VssCheckOutCommand command = new VssCheckOutCommand();
command.setLogger(getLogger());
return (CheckOutScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations