blob: 2b3db658b94d2214952c83cd09866ce911b9eab0 [file] [log] [blame]
Carmelo Casconef7aa3f92017-07-06 23:56:50 -04001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Carmelo Casconef7aa3f92017-07-06 23:56:50 -04003 *
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.p4runtime.api;
18
19import com.google.common.annotations.Beta;
Carmelo Cascone2cad9ef2017-08-01 21:52:07 +020020import org.onosproject.event.AbstractEvent;
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040021
22/**
23 * Representation of an event received from a P4Runtime device.
24 */
25@Beta
Carmelo Cascone2cad9ef2017-08-01 21:52:07 +020026public final class P4RuntimeEvent extends AbstractEvent<P4RuntimeEvent.Type, P4RuntimeEventSubject> {
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040027
Carmelo Cascone2cad9ef2017-08-01 21:52:07 +020028 /**
29 * Type of event.
30 */
31 public enum Type {
32 /**
33 * A packet-in.
34 */
35 PACKET_IN,
Carmelo Cascone2cad9ef2017-08-01 21:52:07 +020036 }
37
38 public P4RuntimeEvent(Type type, P4RuntimeEventSubject subject) {
39 super(type, subject);
40 }
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040041}