blob: 4e0ea60bb2730385719fc1a05197fb0d7da180d5 [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,
Yi Tseng3e7f1452017-10-20 10:31:53 -070036
37 /**
38 * Arbitration reply.
39 */
Carmelo Casconee5b28722018-06-22 17:28:28 +020040 ARBITRATION_RESPONSE,
Andrea Campanella1e573442018-05-17 17:07:13 +020041
42 /**
43 * Channel Event.
44 */
Carmelo Casconede3b6842018-09-05 17:45:10 -070045 CHANNEL_EVENT,
46
47 /**
48 * Permission denied (not master).
49 */
50 PERMISSION_DENIED,
Carmelo Cascone2cad9ef2017-08-01 21:52:07 +020051 }
52
53 public P4RuntimeEvent(Type type, P4RuntimeEventSubject subject) {
54 super(type, subject);
55 }
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040056}