1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.maven.scm.provider.svn.command.info;
20
21 import java.util.List;
22
23 import org.apache.maven.scm.ScmResult;
24 import org.apache.maven.scm.command.info.InfoScmResult;
25
26
27
28
29
30 public class SvnInfoScmResult extends InfoScmResult {
31
32 private static final long serialVersionUID = 955993340040530451L;
33
34 public SvnInfoScmResult(String commandLine, String providerMessage, String commandOutput, boolean success) {
35 super(commandLine, providerMessage, commandOutput, success);
36 }
37
38 public SvnInfoScmResult(String commandLine, List<SvnInfoItem> files) {
39 super(commandLine, null, null, true);
40 if (files != null) {
41 getInfoItems().addAll(files);
42 }
43 }
44
45 public SvnInfoScmResult(List<SvnInfoItem> files, ScmResult result) {
46 super(result);
47
48 if (files != null) {
49 getInfoItems().addAll(files);
50 }
51 }
52 }