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.git;
020
021import javax.inject.Named;
022import javax.inject.Singleton;
023
024import java.io.File;
025
026import org.apache.maven.scm.provider.git.command.GitCommand;
027
028@Singleton
029@Named("git")
030public class TestGitScmProvider extends AbstractGitScmProvider {
031    protected GitCommand getAddCommand() {
032        return null;
033    }
034
035    protected GitCommand getBranchCommand() {
036        return null;
037    }
038
039    protected GitCommand getChangeLogCommand() {
040        return null;
041    }
042
043    protected GitCommand getCheckInCommand() {
044        return null;
045    }
046
047    protected GitCommand getCheckOutCommand() {
048        return null;
049    }
050
051    protected GitCommand getDiffCommand() {
052        return null;
053    }
054
055    protected GitCommand getExportCommand() {
056        return null;
057    }
058
059    protected GitCommand getRemoveCommand() {
060        return null;
061    }
062
063    protected GitCommand getStatusCommand() {
064        return null;
065    }
066
067    protected GitCommand getTagCommand() {
068        return null;
069    }
070
071    protected GitCommand getUntagCommand() {
072        return null;
073    }
074
075    protected GitCommand getUpdateCommand() {
076        return null;
077    }
078
079    protected GitCommand getInfoCommand() {
080        return null;
081    }
082
083    protected GitCommand getBlameCommand() {
084        return null;
085    }
086
087    public GitCommand getRemoteInfoCommand() {
088        return null;
089    }
090
091    protected String getRepositoryURL(File path) {
092        return null;
093    }
094}