]> source.dussan.org Git - archiva.git/blob
9639effbefa84308176ba14427c9e1723e98bbfb
[archiva.git] /
1 package org.apache.archiva.configuration;
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  * ConfigurationEvent
24  *
25  *
26  */
27 public class ConfigurationEvent
28 {
29     public static final int SAVED = 1;
30
31     public static final int CHANGED = 2;
32
33     private int type;
34
35     private String tag;
36
37     public ConfigurationEvent( int type )
38     {
39         this.type = type;
40         tag = "";
41     }
42
43     public ConfigurationEvent(int type, String tag) {
44         this.type = type;
45         this.tag = tag;
46     }
47
48     public int getType()
49     {
50         return type;
51     }
52
53     public String getTag( )
54     {
55         return tag;
56     }
57
58     public void setTag( String tag )
59     {
60         this.tag = tag;
61     }
62
63     @Override
64     public boolean equals( Object o )
65     {
66         if ( this == o ) return true;
67         if ( o == null || getClass( ) != o.getClass( ) ) return false;
68
69         ConfigurationEvent that = (ConfigurationEvent) o;
70
71         if ( type != that.type ) return false;
72         return tag.equals( that.tag );
73     }
74
75     @Override
76     public int hashCode( )
77     {
78         int result = type;
79         result = 31 * result + tag.hashCode( );
80         return result;
81     }
82 }