Search in sources :

Example 1 with TfsCheckOutCommand

use of org.apache.maven.scm.provider.tfs.command.TfsCheckOutCommand in project maven-scm by apache.

the class TfsScmProvider method checkout.

protected CheckOutScmResult checkout(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
    TfsCheckOutCommand command = new TfsCheckOutCommand();
    command.setLogger(getLogger());
    return (CheckOutScmResult) command.execute(repository, fileSet, parameters);
}
Also used : TfsCheckOutCommand(org.apache.maven.scm.provider.tfs.command.TfsCheckOutCommand) CheckOutScmResult(org.apache.maven.scm.command.checkout.CheckOutScmResult)

Aggregations

CheckOutScmResult (org.apache.maven.scm.command.checkout.CheckOutScmResult)1 TfsCheckOutCommand (org.apache.maven.scm.provider.tfs.command.TfsCheckOutCommand)1