]> source.dussan.org Git - archiva.git/blob
034bce463c9e2b8b69fc0be70470431f1da8c3e7
[archiva.git] /
1 package org.apache.archiva.metadata.model;
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  * TODO: review what is appropriate for the base here - rest should be in a maven dependency facet
24  */
25 public class Dependency
26 {
27     private String classifier;
28
29     private boolean optional;
30
31     private String scope;
32
33     private String systemPath;
34
35     private String type;
36
37     private String artifactId;
38
39     private String groupId;
40
41     private String version;
42
43     public void setClassifier( String classifier )
44     {
45         this.classifier = classifier;
46     }
47
48     public String getClassifier()
49     {
50         return classifier;
51     }
52
53     public void setOptional( boolean optional )
54     {
55         this.optional = optional;
56     }
57
58     public boolean isOptional()
59     {
60         return optional;
61     }
62
63     public void setScope( String scope )
64     {
65         this.scope = scope;
66     }
67
68     public String getScope()
69     {
70         return scope;
71     }
72
73     public void setSystemPath( String systemPath )
74     {
75         this.systemPath = systemPath;
76     }
77
78     public String getSystemPath()
79     {
80         return systemPath;
81     }
82
83     public void setType( String type )
84     {
85         this.type = type;
86     }
87
88     public String getType()
89     {
90         return type;
91     }
92
93     public void setArtifactId( String artifactId )
94     {
95         this.artifactId = artifactId;
96     }
97
98     public void setGroupId( String groupId )
99     {
100         this.groupId = groupId;
101     }
102
103     public void setVersion( String version )
104     {
105         this.version = version;
106     }
107
108     public String getVersion()
109     {
110         return version;
111     }
112
113     public String getArtifactId()
114     {
115         return artifactId;
116     }
117
118     public String getGroupId()
119     {
120         return groupId;
121     }
122 }