]> source.dussan.org Git - archiva.git/blob
0cf4fda3c1e31bcf9aa2af391678679263448805
[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 import java.util.Date;
23
24 public class ArtifactMetadata
25 {
26     private String id;
27     
28     private long size;
29
30     private String version;
31
32     private Date fileLastModified;
33
34     private Date whenGathered;
35
36     private String md5;
37
38     private String sha1;
39
40     public String getId()
41     {
42         return id;
43     }
44
45     public void setId( String id )
46     {
47         this.id = id;
48     }
49
50     public long getSize()
51     {
52         return size;
53     }
54
55     public void setSize( long size )
56     {
57         this.size = size;
58     }
59
60     public String getVersion()
61     {
62         return version;
63     }
64
65     public void setVersion( String version )
66     {
67         this.version = version;
68     }
69
70     public void setFileLastModified( long fileLastModified )
71     {
72         this.fileLastModified = new Date( fileLastModified );
73     }
74
75     public void setWhenGathered( Date whenGathered )
76     {
77         this.whenGathered = whenGathered;
78     }
79
80     public void setMd5( String md5 )
81     {
82         this.md5 = md5;
83     }
84
85     public void setSha1( String sha1 )
86     {
87         this.sha1 = sha1;
88     }
89
90     public Date getWhenGathered()
91     {
92         return whenGathered;
93     }
94
95     public String getMd5()
96     {
97         return md5;
98     }
99
100     public String getSha1()
101     {
102         return sha1;
103     }
104
105     public Date getFileLastModified()
106     {
107
108         return fileLastModified;
109     }
110 }