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.git.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 public class GitInfoScmResult extends InfoScmResult {
30
31 private static final long serialVersionUID = -1314905338508176675L;
32
33 public GitInfoScmResult(String commandLine, String providerMessage, String commandOutput, boolean success) {
34 super(commandLine, providerMessage, commandOutput, success);
35 }
36
37 public GitInfoScmResult(String commandLine, List<GitInfoItem> files) {
38 super(commandLine, null, null, true);
39
40 if (files != null) {
41 getInfoItems().addAll(files);
42 }
43 }
44
45 public GitInfoScmResult(List<GitInfoItem> files, ScmResult result) {
46 super(result);
47
48 if (files != null) {
49 getInfoItems().addAll(files);
50 }
51 }
52 }