Coverage Report - org.apache.maven.scm.command.info.InfoItem
 
Classes in this File Line Coverage Branch Coverage Complexity
InfoItem
0 %
0/31
N/A
1
 
 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  
  * @version $Id: InfoItem.java 1063530 2011-01-25 23:53:11Z olamy $
 26  
  * @since 1.5
 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  
 }