Search in sources :

Example 1 with IntegrityListCommand

use of org.apache.maven.scm.provider.integrity.command.list.IntegrityListCommand in project maven-scm by apache.

the class IntegrityScmProvider method list.

/**
 * Maps to si viewproject
 */
@Override
protected ListScmResult list(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters params) throws ScmException {
    IntegrityListCommand command = new IntegrityListCommand();
    command.setLogger(getLogger());
    return (ListScmResult) command.execute(repository, fileSet, params);
}
Also used : IntegrityListCommand(org.apache.maven.scm.provider.integrity.command.list.IntegrityListCommand) ListScmResult(org.apache.maven.scm.command.list.ListScmResult)

Aggregations

ListScmResult (org.apache.maven.scm.command.list.ListScmResult)1 IntegrityListCommand (org.apache.maven.scm.provider.integrity.command.list.IntegrityListCommand)1