]> source.dussan.org Git - archiva.git/blob
e1f00ab98edeedf779b53e1895bf96ab2ca61ff5
[archiva.git] /
1 package org.apache.maven.archiva.database.artifact;
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  * ArtifactKey 
24  *
25  * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
26  * @version $Id$
27  */
28 public class ArtifactKey
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 long id;
41
42     public String getArtifactId()
43     {
44         return artifactId;
45     }
46
47     public void setArtifactId( String artifactId )
48     {
49         this.artifactId = artifactId;
50     }
51
52     public String getClassifier()
53     {
54         return classifier;
55     }
56
57     public void setClassifier( String classifier )
58     {
59         this.classifier = classifier;
60     }
61
62     public String getGroupId()
63     {
64         return groupId;
65     }
66
67     public void setGroupId( String groupId )
68     {
69         this.groupId = groupId;
70     }
71
72     public long getId()
73     {
74         return id;
75     }
76
77     public void setId( long id )
78     {
79         this.id = id;
80     }
81
82     public String getType()
83     {
84         return type;
85     }
86
87     public void setType( String type )
88     {
89         this.type = type;
90     }
91
92     public String getVersion()
93     {
94         return version;
95     }
96
97     public void setVersion( String version )
98     {
99         this.version = version;
100     }
101 }