]> source.dussan.org Git - archiva.git/blob
b1ce93b779108f21758464c445ab48b93c2efeea
[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 /**
23  * A description of a particular license used by a project.
24  */
25 public class License
26 {
27     /**
28      * The name of the license.
29      */
30     private String name;
31
32     /**
33      * The URL of the license text.
34      */
35     private String url;
36
37     public License( String name, String url )
38     {
39         this.name = name;
40         this.url = url;
41     }
42
43     public License()
44     {
45     }
46
47     public String getName()
48     {
49         return name;
50     }
51
52     public void setName( String name )
53     {
54         this.name = name;
55     }
56
57     public String getUrl()
58     {
59         return url;
60     }
61
62     public void setUrl( String url )
63     {
64         this.url = url;
65     }
66
67     @Override
68     public boolean equals( Object o )
69     {
70         if ( this == o )
71         {
72             return true;
73         }
74         if ( o == null || getClass() != o.getClass() )
75         {
76             return false;
77         }
78
79         License license = (License) o;
80
81         if ( name != null ? !name.equals( license.name ) : license.name != null )
82         {
83             return false;
84         }
85         if ( url != null ? !url.equals( license.url ) : license.url != null )
86         {
87             return false;
88         }
89
90         return true;
91     }
92
93     @Override
94     public int hashCode()
95     {
96         int result = name != null ? name.hashCode() : 0;
97         result = 31 * result + ( url != null ? url.hashCode() : 0 );
98         return result;
99     }
100
101     @Override
102     public String toString()
103     {
104         return "License{" + "name='" + name + '\'' + ", url='" + url + '\'' + '}';
105     }
106 }