blob: 31db294d9abc3faf33193cd045dac937c305cc0c [file] [log] [blame]
Carmelo Casconef7aa3f92017-07-06 23:56:50 -04001/*
Carmelo Cascone4c289b72019-01-22 15:30:45 -08002 * Copyright 2019-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
Yi Tseng2a340f72018-11-02 16:52:47 -070019import org.onosproject.grpc.api.GrpcClient;
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040020
21/**
Carmelo Cascone4c289b72019-01-22 15:30:45 -080022 * Root interface exposing all P4Runtime client capabilities.
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040023 */
Carmelo Cascone4c289b72019-01-22 15:30:45 -080024public interface P4RuntimeClient
25 extends GrpcClient, P4RuntimePipelineConfigClient, P4RuntimeStreamClient,
26 P4RuntimeWriteClient, P4RuntimeReadClient {
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040027
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040028}