Coverage Report - org.apache.archiva.web.xmlrpc.api.beans.Dependency
 
Classes in this File Line Coverage Branch Coverage Complexity
Dependency
0%
0/26
N/A
0
 
 1  
 package org.apache.archiva.web.xmlrpc.api.beans;
 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  
 import java.io.Serializable;
 23  
 
 24  
 import com.atlassian.xmlrpc.ServiceBean;
 25  
 
 26  
 @ServiceBean
 27  
 public class Dependency
 28  
     implements Serializable
 29  
 {
 30  
     private String groupId;
 31  
     
 32  
     private String artifactId;
 33  
     
 34  
     private String version;
 35  
     
 36  
     private String classifier;
 37  
     
 38  
     private String type;
 39  
     
 40  
     private String scope;
 41  
     
 42  
     public Dependency( String groupId, String artifactId, String version, String classifier, String type, String scope )
 43  0
     {
 44  0
         this.groupId = groupId;
 45  0
         this.artifactId = artifactId;
 46  0
         this.version = version;
 47  0
         this.classifier = classifier;
 48  0
         this.type = type;
 49  0
         this.scope = scope;
 50  0
     }
 51  
 
 52  
     public String getGroupId()
 53  
     {
 54  0
         return groupId;
 55  
     }
 56  
 
 57  
     public void setGroupId( String groupId )
 58  
     {
 59  0
         this.groupId = groupId;
 60  0
     }
 61  
 
 62  
     public String getArtifactId()
 63  
     {
 64  0
         return artifactId;
 65  
     }
 66  
 
 67  
     public void setArtifactId( String artifactId )
 68  
     {
 69  0
         this.artifactId = artifactId;
 70  0
     }
 71  
 
 72  
     public String getVersion()
 73  
     {
 74  0
         return version;
 75  
     }
 76  
 
 77  
     public void setVersion( String version )
 78  
     {
 79  0
         this.version = version;
 80  0
     }
 81  
 
 82  
     public String getClassifier()
 83  
     {
 84  0
         return classifier;
 85  
     }
 86  
 
 87  
     public void setClassifier( String classifier )
 88  
     {
 89  0
         this.classifier = classifier;
 90  0
     }
 91  
 
 92  
     public String getType()
 93  
     {
 94  0
         return type;
 95  
     }
 96  
 
 97  
     public void setType( String type )
 98  
     {
 99  0
         this.type = type;
 100  0
     }
 101  
 
 102  
     public String getScope()
 103  
     {
 104  0
         return scope;
 105  
     }
 106  
 
 107  
     public void setScope( String scope )
 108  
     {
 109  0
         this.scope = scope;
 110  0
     }
 111  
 }