]> source.dussan.org Git - archiva.git/blob
448d720277d334b04e8fa74909c840c10c38ddf9
[archiva.git] /
1 package org.apache.archiva.repository.events;
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 import org.apache.archiva.repository.Repository;
23
24 /**
25  * Repository value events are used for providing information about repository attribute changes.
26  * The value event gives information of the attribute value before and after the change.
27  *
28  * @param <V> The type of the changed attribute
29  */
30 public class RepositoryValueEvent<V> extends RepositoryEvent {
31
32     private static final long serialVersionUID = 4176597620699304794L;
33
34     public static final EventType<RepositoryValueEvent<?>> ANY = new EventType(RepositoryEvent.ANY, "REPOSITORY.VALUE");
35
36     final V value;
37     final V oldValue;
38     final String attributeName;
39
40     public RepositoryValueEvent(EventType<? extends RepositoryValueEvent<V>> type, Object origin, Repository repo, V oldValue, V value,
41                                 String attributeName) {
42         super(type, origin, repo);
43         this.value = value;
44         this.oldValue = oldValue;
45         this.attributeName = attributeName;
46     }
47
48     public V getValue() {
49         return value;
50     }
51
52     public V getOldValue() {
53         return oldValue;
54     }
55
56     public String getAttributeName() {
57         return attributeName;
58     }
59
60 }