Search in sources :

Example 1 with BazaarCheckOutCommand

use of org.apache.maven.scm.provider.bazaar.command.checkout.BazaarCheckOutCommand in project maven-scm by apache.

the class BazaarScmProvider method checkout.

/**
 * {@inheritDoc}
 */
public CheckOutScmResult checkout(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
    BazaarCheckOutCommand command = new BazaarCheckOutCommand();
    command.setLogger(getLogger());
    return (CheckOutScmResult) command.execute(repository, fileSet, parameters);
}
Also used : BazaarCheckOutCommand(org.apache.maven.scm.provider.bazaar.command.checkout.BazaarCheckOutCommand) CheckOutScmResult(org.apache.maven.scm.command.checkout.CheckOutScmResult)

Aggregations

CheckOutScmResult (org.apache.maven.scm.command.checkout.CheckOutScmResult)1 BazaarCheckOutCommand (org.apache.maven.scm.provider.bazaar.command.checkout.BazaarCheckOutCommand)1