Search in sources :

Example 1 with StarteamCheckOutCommand

use of org.apache.maven.scm.provider.starteam.command.checkout.StarteamCheckOutCommand in project maven-scm by apache.

the class StarteamScmProvider method checkout.

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

Aggregations

CheckOutScmResult (org.apache.maven.scm.command.checkout.CheckOutScmResult)1 StarteamCheckOutCommand (org.apache.maven.scm.provider.starteam.command.checkout.StarteamCheckOutCommand)1