View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.scm.command.info;
20  
21  /**
22   * @author <a href="mailto:kenney@apache.org">Kenney Westerhof</a>
23   * @author Olivier Lamy
24   *
25   * @since 1.5
26   */
27  public class InfoItem {
28      private String path;
29  
30      private String url;
31  
32      private String repositoryRoot;
33  
34      private String repositoryUUID;
35  
36      private String revision;
37  
38      private String nodeKind;
39  
40      private String schedule;
41  
42      private String lastChangedAuthor;
43  
44      private String lastChangedRevision;
45  
46      private String lastChangedDate;
47  
48      public String getPath() {
49          return path;
50      }
51  
52      public void setPath(String path) {
53          this.path = path;
54      }
55  
56      public String getURL() {
57          return url;
58      }
59  
60      public void setURL(String url) {
61          this.url = url;
62      }
63  
64      public String getRepositoryRoot() {
65          return repositoryRoot;
66      }
67  
68      public void setRepositoryRoot(String repositoryRoot) {
69          this.repositoryRoot = repositoryRoot;
70      }
71  
72      public String getRepositoryUUID() {
73          return repositoryUUID;
74      }
75  
76      public void setRepositoryUUID(String repositoryUUID) {
77          this.repositoryUUID = repositoryUUID;
78      }
79  
80      public String getRevision() {
81          return revision;
82      }
83  
84      public void setRevision(String revision) {
85          this.revision = revision;
86      }
87  
88      public String getNodeKind() {
89          return nodeKind;
90      }
91  
92      public void setNodeKind(String nodeKind) {
93          this.nodeKind = nodeKind;
94      }
95  
96      public String getSchedule() {
97          return schedule;
98      }
99  
100     public void setSchedule(String schedule) {
101         this.schedule = schedule;
102     }
103 
104     public String getLastChangedAuthor() {
105         return lastChangedAuthor;
106     }
107 
108     public void setLastChangedAuthor(String lastChangedAuthor) {
109         this.lastChangedAuthor = lastChangedAuthor;
110     }
111 
112     public String getLastChangedRevision() {
113         return lastChangedRevision;
114     }
115 
116     public void setLastChangedRevision(String lastChangedRevision) {
117         this.lastChangedRevision = lastChangedRevision;
118     }
119 
120     public String getLastChangedDate() {
121         return lastChangedDate;
122     }
123 
124     public void setLastChangedDate(String lastChangedDate) {
125         this.lastChangedDate = lastChangedDate;
126     }
127 }