blob: 8363e53bf13614c474b115f537f321cf54fc6851 [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;
Andrea Campanella1e573442018-05-17 17:07:13 +020020import org.onosproject.net.DeviceId;
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040021
22/**
23 * Information about an event generated by a P4Runtime device .
24 */
25@Beta
26public interface P4RuntimeEventSubject {
27
Andrea Campanella1e573442018-05-17 17:07:13 +020028 /**
29 * Returns the deviceId associated to this subject.
30 *
31 * @return the deviceid
32 */
33 DeviceId deviceId();
34
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040035}