blob: 2ed5038a6aa847aa2d264449a1a519a51430c607 [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.store.pi.impl;
18
Frank Wangd7e3b4b2017-09-24 13:37:54 +090019import org.onosproject.net.meter.Meter;
20import org.onosproject.net.pi.runtime.PiMeterCellConfig;
21import org.onosproject.net.pi.service.PiMeterTranslationStore;
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 PI translation store for meters.
26 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070027@Component(immediate = true, service = PiMeterTranslationStore.class)
Frank Wangd7e3b4b2017-09-24 13:37:54 +090028public class DistributedPiMeterTranslationStore
29 extends AbstractDistributedPiTranslationStore<Meter, PiMeterCellConfig>
30 implements PiMeterTranslationStore {
31
32 private static final String MAP_SIMPLE_NAME = "meter";
33
34 @Override
35 protected String mapSimpleName() {
36 return MAP_SIMPLE_NAME;
37 }
38}