1 package org.apache.maven.scm.provider.svn;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import org.apache.maven.scm.provider.svn.command.SvnCommand;
23
24 import java.io.File;
25
26 public class TestSvnScmProvider
27 extends AbstractSvnScmProvider
28 {
29 protected SvnCommand getAddCommand()
30 {
31 return null;
32 }
33
34 protected SvnCommand getBranchCommand()
35 {
36 return null;
37 }
38
39 protected SvnCommand getChangeLogCommand()
40 {
41 return null;
42 }
43
44 protected SvnCommand getCheckInCommand()
45 {
46 return null;
47 }
48
49 protected SvnCommand getCheckOutCommand()
50 {
51 return null;
52 }
53
54 protected SvnCommand getDiffCommand()
55 {
56 return null;
57 }
58
59 protected SvnCommand getExportCommand()
60 {
61 return null;
62 }
63
64 protected SvnCommand getRemoveCommand()
65 {
66 return null;
67 }
68
69 protected SvnCommand getStatusCommand()
70 {
71 return null;
72 }
73
74 protected SvnCommand getTagCommand()
75 {
76 return null;
77 }
78
79 protected SvnCommand getUpdateCommand()
80 {
81 return null;
82 }
83
84 protected SvnCommand getListCommand()
85 {
86 return null;
87 }
88
89 protected SvnCommand getInfoCommand()
90 {
91 return null;
92 }
93
94 protected SvnCommand getBlameCommand()
95 {
96 return null;
97 }
98
99 protected SvnCommand getMkdirCommand()
100 {
101 return null;
102 }
103
104 protected String getRepositoryURL( File path )
105 {
106 return null;
107 }
108 }