]> source.dussan.org Git - archiva.git/blob
fac87f2ca1db9dbdcdddbd118b8987697be1bf56
[archiva.git] /
1 package org.apache.archiva.rest.api.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
23 /**
24  * @author Olivier Lamy
25  * @since 1.4-M3
26  */
27 @XmlRootElement( name = "artifactContentEntry" )
28 public class ArtifactContentEntry
29 {
30     private String name;
31
32     private boolean file;
33
34     public ArtifactContentEntry()
35     {
36         // no op
37     }
38
39     public ArtifactContentEntry( String name, boolean file )
40     {
41         this.name = name;
42         this.file = file;
43     }
44
45     public String getName()
46     {
47         return name;
48     }
49
50     public void setName( String name )
51     {
52         this.name = name;
53     }
54
55     public boolean isFile()
56     {
57         return file;
58     }
59
60     public void setFile( boolean file )
61     {
62         this.file = file;
63     }
64
65     @Override
66     public String toString()
67     {
68         final StringBuilder sb = new StringBuilder();
69         sb.append( "ArtifactContentEntry" );
70         sb.append( "{name='" ).append( name ).append( '\'' );
71         sb.append( ", file=" ).append( file );
72         sb.append( '}' );
73         return sb.toString();
74     }
75 }