blob: 48546fc74bb08f38db18b67faa9eddc8438ffb32 [file] [log] [blame]
Frank Wangd7e3b4b2017-09-24 13:37:54 +09001/*
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 Cascone4c289b72019-01-22 15:30:45 -080019import org.onosproject.net.pi.runtime.PiEntityType;
Frank Wangd7e3b4b2017-09-24 13:37:54 +090020import org.onosproject.net.pi.runtime.PiMeterCellConfig;
Carmelo Cascone4c289b72019-01-22 15:30:45 -080021import org.onosproject.net.pi.runtime.PiMeterCellHandle;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070022import org.osgi.service.component.annotations.Component;
Frank Wangd7e3b4b2017-09-24 13:37:54 +090023
24/**
25 * Distributed implementation of a P4Runtime meter mirror.
26 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070027@Component(immediate = true, service = P4RuntimeMeterMirror.class)
Frank Wangd7e3b4b2017-09-24 13:37:54 +090028public final class DistributedP4RuntimeMeterMirror
29 extends AbstractDistributedP4RuntimeMirror
Carmelo Cascone4c289b72019-01-22 15:30:45 -080030 <PiMeterCellHandle, PiMeterCellConfig>
Frank Wangd7e3b4b2017-09-24 13:37:54 +090031 implements P4RuntimeMeterMirror {
32
Carmelo Cascone4c289b72019-01-22 15:30:45 -080033 public DistributedP4RuntimeMeterMirror() {
34 super(PiEntityType.METER_CELL_CONFIG);
Frank Wangd7e3b4b2017-09-24 13:37:54 +090035 }
pierventree9db28a2021-01-15 11:56:46 +010036
37 @Override
38 protected String mapSimpleName() {
39 return PiEntityType.METER_CELL_CONFIG.name().toLowerCase();
40 }
Carmelo Cascone4c289b72019-01-22 15:30:45 -080041}