]> source.dussan.org Git - archiva.git/blob
8f3a3f24d0e3bcaf34ab0751042bd167320f1924
[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     public void removePattern( String pattern )
83     {
84         getPatterns().remove( pattern );
85     }
86
87     @Override
88     public boolean equals( Object o )
89     {
90         if ( this == o )
91         {
92             return true;
93         }
94         if ( o == null || getClass() != o.getClass() )
95         {
96             return false;
97         }
98
99         FileType fileType = (FileType) o;
100
101         if ( id != null ? !id.equals( fileType.id ) : fileType.id != null )
102         {
103             return false;
104         }
105
106         return true;
107     }
108
109     @Override
110     public int hashCode()
111     {
112         return id != null ? 37 + id.hashCode() : 0;
113     }
114
115     @Override
116     public String toString()
117     {
118         final StringBuilder sb = new StringBuilder();
119         sb.append( "FileType" );
120         sb.append( "{id='" ).append( id ).append( '\'' );
121         sb.append( ", patterns=" ).append( patterns );
122         sb.append( '}' );
123         return sb.toString();
124     }
125 }