blob: e6b3bdfc8b180870e11b3e5d0621f76c9a7255e8 [file] [log] [blame]
CyberHasH39b808b2019-10-11 05:59:12 +08001/*
2 * Copyright 2019-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
19import org.onosproject.net.pi.runtime.PiEntityType;
20import org.onosproject.net.pi.runtime.PiTableEntry;
21import org.onosproject.net.pi.runtime.PiTableEntryHandle;
22import org.osgi.service.component.annotations.Component;
23
24/**
25 * Distributed implementation of a P4Runtime default entry mirror.
26 */
27@Component(immediate = true, service = P4RuntimeDefaultEntryMirror.class)
28public final class DistributedP4RuntimeDefaultEntryMirror
29 extends AbstractDistributedP4RuntimeMirror
30 <PiTableEntryHandle, PiTableEntry>
31 implements P4RuntimeDefaultEntryMirror {
32
33 public DistributedP4RuntimeDefaultEntryMirror() {
34 super(PiEntityType.TABLE_ENTRY);
35 }
pierventre8e6e30c2021-01-15 11:56:46 +010036
37 @Override
38 protected String mapSimpleName() {
39 return PiEntityType.TABLE_ENTRY.name().toLowerCase() + "-default";
40 }
CyberHasH39b808b2019-10-11 05:59:12 +080041}