1package org.apache.archiva.repository.event;
23/*4 * Licensed to the Apache Software Foundation (ASF) under one5 * or more contributor license agreements. See the NOTICE file6 * distributed with this work for additional information7 * regarding copyright ownership. The ASF licenses this file8 * to you under the Apache License, Version 2.0 (the9 * "License"); you may not use this file except in compliance10 * with the License. You may obtain a copy of the License at11 *12 * http://www.apache.org/licenses/LICENSE-2.013 *14 * Unless required by applicable law or agreed to in writing,15 * software distributed under the License is distributed on an16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY17 * KIND, either express or implied. See the License for the18 * specific language governing permissions and limitations19 * under the License.20 */2122import org.apache.archiva.event.EventType;
23import org.apache.archiva.repository.Repository;
2425/**26 * Raises events about the repository lifecycle. The following events are raised:27 * <ul>28 * <li>REGISTERED: a repository has been registered by the repository registry</li>29 * <li>UNREGISTERED: a repository has been removed by the repository registry</li>30 * <li>UPDATED: A repository attribute was updated</li>31 * </ul>32 */33publicclassLifecycleEventextendsRepositoryEvent {
3435privatestaticfinallong serialVersionUID = -2520982087439428714L;
36publicstatic EventType<LifecycleEvent> ANY = new EventType<>(RepositoryEvent.ANY, "REPOSITORY.LIFECYCLE");
37publicstatic EventType<LifecycleEvent> REGISTERED = new EventType<>(ANY, "REPOSITORY.LIFECYCLE.REGISTERED");
38publicstatic EventType<LifecycleEvent> UNREGISTERED = new EventType<>(ANY, "REPOSITORY.LIFECYCLE.UNREGISTERED");
39publicstatic EventType<LifecycleEvent> UPDATED = new EventType<>(ANY, "REPOSITORY.LIFECYCLE.UPDATED");
4041publicLifecycleEvent(EventType<? extends LifecycleEvent> type, Object origin, Repository repository) {
42super(type, origin, repository);
43 }
44 }