]> source.dussan.org Git - archiva.git/blob
5dbeb2515514146c35a5de8081436b61d50bae5d
[archiva.git] /
1 package org.apache.archiva.webapp.ui.services.model;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import javax.xml.bind.annotation.XmlRootElement;
22 import java.io.Serializable;
23
24 /**
25  * @author Olivier Lamy
26  * @since 1.4-M3
27  */
28 @XmlRootElement( name = "fileMetadata" )
29 public class FileMetadata
30     implements Serializable
31 {
32     private String name;
33
34     private long size;
35
36     private String url;
37
38     private String deleteUrl;
39
40     private String deleteType;
41
42     private String errorKey;
43
44     public FileMetadata()
45     {
46         // no op
47     }
48
49     public FileMetadata( String filename, long size, String url )
50     {
51         this.name = filename;
52         this.size = size;
53         this.url = url;
54         this.deleteUrl = url;
55         this.deleteType = "DELETE";
56     }
57
58     public String getName()
59     {
60         return name;
61     }
62
63     public void setName( String name )
64     {
65         this.name = name;
66     }
67
68     public long getSize()
69     {
70         return size;
71     }
72
73     public void setSize( long size )
74     {
75         this.size = size;
76     }
77
78     public String getUrl()
79     {
80         return url;
81     }
82
83     public void setUrl( String url )
84     {
85         this.url = url;
86     }
87
88     public String getDeleteUrl()
89     {
90         return deleteUrl;
91     }
92
93
94     public void setDeleteUrl( String deleteUrl )
95     {
96         this.deleteUrl = deleteUrl;
97     }
98
99     public String getDeleteType()
100     {
101         return deleteType;
102     }
103
104     public void setDeleteType( String deleteType )
105     {
106         this.deleteType = deleteType;
107     }
108 }