This project has retired. For details please refer to its Attic page.
RepositoryEvent xref
View Javadoc
1   package org.apache.archiva.repository;
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 java.time.LocalDateTime;
23  
24  /**
25   * Repository event. Repository events are used for providing information about repository changes.
26   *
27   * @param <T>
28   */
29  public class RepositoryEvent<T> {
30  
31      final EventType type;
32      final Repository repo;
33      final T value;
34      final T oldValue;
35      final LocalDateTime instant;
36  
37      public RepositoryEvent(EventType type, Repository repo, T oldValue, T value) {
38          this.type = type;
39          this.repo = repo;
40          this.value = value;
41          this.oldValue = oldValue;
42          this.instant = LocalDateTime.now();
43      }
44  
45      public interface EventType {
46          String name();
47      }
48  
49  
50      public EventType getType() {
51          return type;
52      };
53  
54      public Repository getRepository() {
55          return repo;
56      };
57  
58      public T getValue() {
59          return value;
60      }
61  
62      public T getOldValue() {
63          return oldValue;
64      }
65  
66      public LocalDateTime getInstant() {
67          return instant;
68      }
69  }