blob: ecad89d703a26f7624072adf86f56cc530c0b34f [file] [log] [blame]
Carmelo Cascone326ad2d2017-11-28 18:09:13 -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.store.pi.impl;
18
Carmelo Cascone326ad2d2017-11-28 18:09:13 -080019import org.onosproject.net.flow.FlowRule;
20import org.onosproject.net.pi.runtime.PiTableEntry;
21import org.onosproject.net.pi.service.PiFlowRuleTranslationStore;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070022import org.osgi.service.component.annotations.Component;
Carmelo Cascone326ad2d2017-11-28 18:09:13 -080023
24/**
25 * Distributed implementation of a PI translation store for flow rules.
26 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070027@Component(immediate = true, service = PiFlowRuleTranslationStore.class)
Carmelo Cascone326ad2d2017-11-28 18:09:13 -080028public class DistributedPiFlowRuleTranslationStore
29 extends AbstractDistributedPiTranslationStore<FlowRule, PiTableEntry>
30 implements PiFlowRuleTranslationStore {
31
32 private static final String MAP_SIMPLE_NAME = "flowrule";
33
34 @Override
35 protected String mapSimpleName() {
36 return MAP_SIMPLE_NAME;
37 }
38}