View Javadoc
1   package org.apache.maven.scm.command.info;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   * http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  /**
23   * @author <a href="mailto:kenney@apache.org">Kenney Westerhof</a>
24   * @author Olivier Lamy
25   *
26   * @since 1.5
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 }