1 package org.apache.maven.scm.command.info;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 public class InfoItem
29 {
30 private String path;
31
32 private String url;
33
34 private String repositoryRoot;
35
36 private String repositoryUUID;
37
38 private String revision;
39
40 private String nodeKind;
41
42 private String schedule;
43
44 private String lastChangedAuthor;
45
46 private String lastChangedRevision;
47
48 private String lastChangedDate;
49
50 public String getPath()
51 {
52 return path;
53 }
54
55 public void setPath( String path )
56 {
57 this.path = path;
58 }
59
60 public String getURL()
61 {
62 return url;
63 }
64
65 public void setURL( String url )
66 {
67 this.url = url;
68 }
69
70 public String getRepositoryRoot()
71 {
72 return repositoryRoot;
73 }
74
75 public void setRepositoryRoot( String repositoryRoot )
76 {
77 this.repositoryRoot = repositoryRoot;
78 }
79
80 public String getRepositoryUUID()
81 {
82 return repositoryUUID;
83 }
84
85 public void setRepositoryUUID( String repositoryUUID )
86 {
87 this.repositoryUUID = repositoryUUID;
88 }
89
90 public String getRevision()
91 {
92 return revision;
93 }
94
95 public void setRevision( String revision )
96 {
97 this.revision = revision;
98 }
99
100 public String getNodeKind()
101 {
102 return nodeKind;
103 }
104
105 public void setNodeKind( String nodeKind )
106 {
107 this.nodeKind = nodeKind;
108 }
109
110 public String getSchedule()
111 {
112 return schedule;
113 }
114
115 public void setSchedule( String schedule )
116 {
117 this.schedule = schedule;
118 }
119
120 public String getLastChangedAuthor()
121 {
122 return lastChangedAuthor;
123 }
124
125 public void setLastChangedAuthor( String lastChangedAuthor )
126 {
127 this.lastChangedAuthor = lastChangedAuthor;
128 }
129
130 public String getLastChangedRevision()
131 {
132 return lastChangedRevision;
133 }
134
135 public void setLastChangedRevision( String lastChangedRevision )
136 {
137 this.lastChangedRevision = lastChangedRevision;
138 }
139
140 public String getLastChangedDate()
141 {
142 return lastChangedDate;
143 }
144
145 public void setLastChangedDate( String lastChangedDate )
146 {
147 this.lastChangedDate = lastChangedDate;
148 }
149 }