View Javadoc
1   package org.apache.maven.scm.provider.git;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   * http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.maven.scm.provider.git.command.GitCommand;
23  
24  import java.io.File;
25  
26  public class TestGitScmProvider
27      extends AbstractGitScmProvider
28  {
29      protected GitCommand getAddCommand()
30      {
31          return null;
32      }
33  
34      protected GitCommand getBranchCommand()
35      {
36          return null;
37      }
38  
39      protected GitCommand getChangeLogCommand()
40      {
41          return null;
42      }
43  
44      protected GitCommand getCheckInCommand()
45      {
46          return null;
47      }
48  
49      protected GitCommand getCheckOutCommand()
50      {
51          return null;
52      }
53  
54      protected GitCommand getDiffCommand()
55      {
56          return null;
57      }
58  
59      protected GitCommand getExportCommand()
60      {
61          return null;
62      }
63  
64      protected GitCommand getRemoveCommand()
65      {
66          return null;
67      }
68  
69      protected GitCommand getStatusCommand()
70      {
71          return null;
72      }
73  
74      protected GitCommand getTagCommand()
75      {
76          return null;
77      }
78  
79      protected GitCommand getUntagCommand()
80      {
81          return null;
82      }
83  
84      protected GitCommand getUpdateCommand()
85      {
86          return null;
87      }
88  
89      protected GitCommand getInfoCommand()
90      {
91          return null;
92      }
93  
94      protected GitCommand getBlameCommand()
95      {
96          return null;
97      }
98      
99      public GitCommand getRemoteInfoCommand() {
100     	return null;
101     }
102 
103     protected String getRepositoryURL( File path )
104     {
105         return null;
106     }
107 }