]> source.dussan.org Git - archiva.git/blob
eba5b262ce91e64702aae982eec734b82cde80f1
[archiva.git] /
1 package org.apache.archiva.admin.repository.admin;
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 java.io.Serializable;
22 import java.util.ArrayList;
23 import java.util.List;
24
25 /**
26  * @author Olivier Lamy
27  * @since 1.4
28  */
29 public class FileType
30     implements Serializable
31 {
32     /**
33      * Field id.
34      */
35     private String id;
36
37     /**
38      * Field patterns.
39      */
40     private List<String> patterns;
41
42     public FileType()
43     {
44         // no op
45     }
46
47     public FileType( String id, List<String> patterns )
48     {
49         this.id = id;
50         this.patterns = patterns;
51     }
52
53     public String getId()
54     {
55         return id;
56     }
57
58     public void setId( String id )
59     {
60         this.id = id;
61     }
62
63     public List<String> getPatterns()
64     {
65         if ( patterns == null )
66         {
67             this.patterns = new ArrayList<String>();
68         }
69         return patterns;
70     }
71
72     public void setPatterns( List<String> patterns )
73     {
74         this.patterns = patterns;
75     }
76
77     public void addPattern( String pattern )
78     {
79         getPatterns().add( pattern );
80     }
81
82     @Override
83     public boolean equals( Object o )
84     {
85         if ( this == o )
86         {
87             return true;
88         }
89         if ( o == null || getClass() != o.getClass() )
90         {
91             return false;
92         }
93
94         FileType fileType = (FileType) o;
95
96         if ( id != null ? !id.equals( fileType.id ) : fileType.id != null )
97         {
98             return false;
99         }
100
101         return true;
102     }
103
104     @Override
105     public int hashCode()
106     {
107         return id != null ? 37 + id.hashCode() : 0;
108     }
109 }