blob: 9e2411d88d982ac5c086103f50238a78affb8acb [file] [log] [blame]
Carmelo Cascone1a7e4f92017-11-20 23:04:02 -08001/*
2 * Copyright 2017-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.net.pi.service;
18
19import com.google.common.annotations.Beta;
20import org.onosproject.event.AbstractEvent;
Carmelo Cascone326ad2d2017-11-28 18:09:13 -080021import org.onosproject.net.pi.runtime.PiEntity;
Carmelo Cascone1a7e4f92017-11-20 23:04:02 -080022
23/**
24 * Signals an event related to the translation of a protocol-dependent (PD)
25 * entity to a protocol-independent (PI) one.
26 */
27@Beta
Carmelo Cascone326ad2d2017-11-28 18:09:13 -080028public final class PiTranslationEvent<T extends PiTranslatable, E extends PiEntity>
29 extends AbstractEvent<PiTranslationEvent.Type, PiTranslatedEntity<T, E>> {
Carmelo Cascone1a7e4f92017-11-20 23:04:02 -080030
31 /**
32 * Type of event.
33 */
34 public enum Type {
35 /**
36 * Signals that A PD entity has been translated to a PI one, and the
37 * mapping between the two entities has been learned by the system.
38 */
39 LEARNED,
40
41 /**
42 * Signals that a previously learned mapping between a PD entity and its
43 * PI counterpart has been removed.
44 */
45 FORGOT,
46 }
47
48 /**
49 * Creates a new translation event.
50 *
51 * @param type type of event
52 * @param subject subject of event
53 */
Carmelo Cascone326ad2d2017-11-28 18:09:13 -080054 public PiTranslationEvent(Type type, PiTranslatedEntity<T, E> subject) {
Carmelo Cascone1a7e4f92017-11-20 23:04:02 -080055 super(type, subject);
56 }
57}