001/*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements.  See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership.  The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License.  You may obtain a copy of the License at
009 *
010 *   http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing,
013 * software distributed under the License is distributed on an
014 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 * KIND, either express or implied.  See the License for the
016 * specific language governing permissions and limitations
017 * under the License.
018 */
019package org.apache.maven.scm.provider.svn;
020
021import javax.inject.Named;
022import javax.inject.Singleton;
023
024import java.io.File;
025
026import org.apache.maven.scm.CommandParameters;
027import org.apache.maven.scm.ScmException;
028import org.apache.maven.scm.provider.ScmProviderRepository;
029import org.apache.maven.scm.provider.svn.command.SvnCommand;
030
031@Singleton
032@Named("svn")
033public class TestSvnScmProvider extends AbstractSvnScmProvider {
034    protected SvnCommand getAddCommand() {
035        return null;
036    }
037
038    protected SvnCommand getBranchCommand() {
039        return null;
040    }
041
042    protected SvnCommand getChangeLogCommand() {
043        return null;
044    }
045
046    protected SvnCommand getCheckInCommand() {
047        return null;
048    }
049
050    protected SvnCommand getCheckOutCommand() {
051        return null;
052    }
053
054    protected SvnCommand getDiffCommand() {
055        return null;
056    }
057
058    protected SvnCommand getExportCommand() {
059        return null;
060    }
061
062    protected SvnCommand getRemoveCommand() {
063        return null;
064    }
065
066    protected SvnCommand getStatusCommand() {
067        return null;
068    }
069
070    protected SvnCommand getTagCommand() {
071        return null;
072    }
073
074    protected SvnCommand getUntagCommand() {
075        return null;
076    }
077
078    protected SvnCommand getUpdateCommand() {
079        return null;
080    }
081
082    protected SvnCommand getListCommand() {
083        return null;
084    }
085
086    protected SvnCommand getInfoCommand() {
087        return null;
088    }
089
090    protected SvnCommand getBlameCommand() {
091        return null;
092    }
093
094    protected SvnCommand getMkdirCommand() {
095        return null;
096    }
097
098    protected String getRepositoryURL(File path) {
099        return null;
100    }
101
102    @Override
103    public boolean remoteUrlExist(ScmProviderRepository repository, CommandParameters parameters) throws ScmException {
104        return false;
105    }
106}