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 | 0 | 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 | 0 | return path; |
53 | |
} |
54 | |
|
55 | |
public void setPath( String path ) |
56 | |
{ |
57 | 0 | this.path = path; |
58 | 0 | } |
59 | |
|
60 | |
public String getURL() |
61 | |
{ |
62 | 0 | return url; |
63 | |
} |
64 | |
|
65 | |
public void setURL( String url ) |
66 | |
{ |
67 | 0 | this.url = url; |
68 | 0 | } |
69 | |
|
70 | |
public String getRepositoryRoot() |
71 | |
{ |
72 | 0 | return repositoryRoot; |
73 | |
} |
74 | |
|
75 | |
public void setRepositoryRoot( String repositoryRoot ) |
76 | |
{ |
77 | 0 | this.repositoryRoot = repositoryRoot; |
78 | 0 | } |
79 | |
|
80 | |
public String getRepositoryUUID() |
81 | |
{ |
82 | 0 | return repositoryUUID; |
83 | |
} |
84 | |
|
85 | |
public void setRepositoryUUID( String repositoryUUID ) |
86 | |
{ |
87 | 0 | this.repositoryUUID = repositoryUUID; |
88 | 0 | } |
89 | |
|
90 | |
public String getRevision() |
91 | |
{ |
92 | 0 | return revision; |
93 | |
} |
94 | |
|
95 | |
public void setRevision( String revision ) |
96 | |
{ |
97 | 0 | this.revision = revision; |
98 | 0 | } |
99 | |
|
100 | |
public String getNodeKind() |
101 | |
{ |
102 | 0 | return nodeKind; |
103 | |
} |
104 | |
|
105 | |
public void setNodeKind( String nodeKind ) |
106 | |
{ |
107 | 0 | this.nodeKind = nodeKind; |
108 | 0 | } |
109 | |
|
110 | |
public String getSchedule() |
111 | |
{ |
112 | 0 | return schedule; |
113 | |
} |
114 | |
|
115 | |
public void setSchedule( String schedule ) |
116 | |
{ |
117 | 0 | this.schedule = schedule; |
118 | 0 | } |
119 | |
|
120 | |
public String getLastChangedAuthor() |
121 | |
{ |
122 | 0 | return lastChangedAuthor; |
123 | |
} |
124 | |
|
125 | |
public void setLastChangedAuthor( String lastChangedAuthor ) |
126 | |
{ |
127 | 0 | this.lastChangedAuthor = lastChangedAuthor; |
128 | 0 | } |
129 | |
|
130 | |
public String getLastChangedRevision() |
131 | |
{ |
132 | 0 | return lastChangedRevision; |
133 | |
} |
134 | |
|
135 | |
public void setLastChangedRevision( String lastChangedRevision ) |
136 | |
{ |
137 | 0 | this.lastChangedRevision = lastChangedRevision; |
138 | 0 | } |
139 | |
|
140 | |
public String getLastChangedDate() |
141 | |
{ |
142 | 0 | return lastChangedDate; |
143 | |
} |
144 | |
|
145 | |
public void setLastChangedDate( String lastChangedDate ) |
146 | |
{ |
147 | 0 | this.lastChangedDate = lastChangedDate; |
148 | 0 | } |
149 | |
} |