blob: 9d5d4b10a43712487e5479f2428e8688e0490ecf [file] [log] [blame]
Carmelo Casconee75b7942017-11-21 17:14:49 -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.drivers.p4runtime.mirror;
18
Carmelo Casconecb4327a2018-09-11 15:17:23 -070019import org.onosproject.net.pi.runtime.PiActionProfileGroup;
20import org.onosproject.net.pi.runtime.PiActionProfileGroupHandle;
Carmelo Cascone4c289b72019-01-22 15:30:45 -080021import org.onosproject.net.pi.runtime.PiEntityType;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070022import org.osgi.service.component.annotations.Component;
Carmelo Casconee75b7942017-11-21 17:14:49 -080023
24/**
Carmelo Casconecb4327a2018-09-11 15:17:23 -070025 * Distributed implementation of a P4Runtime action profile group mirror.
Carmelo Casconee75b7942017-11-21 17:14:49 -080026 */
Carmelo Casconecb4327a2018-09-11 15:17:23 -070027@Component(immediate = true, service = P4RuntimeActionProfileGroupMirror.class)
28public final class DistributedP4RuntimeActionProfileGroupMirror
Carmelo Casconee75b7942017-11-21 17:14:49 -080029 extends AbstractDistributedP4RuntimeMirror
Carmelo Casconecb4327a2018-09-11 15:17:23 -070030 <PiActionProfileGroupHandle, PiActionProfileGroup>
31 implements P4RuntimeActionProfileGroupMirror {
Carmelo Casconee75b7942017-11-21 17:14:49 -080032
Carmelo Cascone4c289b72019-01-22 15:30:45 -080033 public DistributedP4RuntimeActionProfileGroupMirror() {
34 super(PiEntityType.ACTION_PROFILE_GROUP);
Carmelo Casconee75b7942017-11-21 17:14:49 -080035 }
36}