blob: ef7e9f11a58b143466d81edcb4fecf71b4ba1c1d [file] [log] [blame]
/*
* Copyright 2017-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.store.pi.impl;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Service;
import org.onosproject.net.meter.Meter;
import org.onosproject.net.pi.runtime.PiMeterCellConfig;
import org.onosproject.net.pi.service.PiMeterTranslationStore;
/**
* Distributed implementation of a PI translation store for meters.
*/
@Component(immediate = true)
@Service
public class DistributedPiMeterTranslationStore
extends AbstractDistributedPiTranslationStore<Meter, PiMeterCellConfig>
implements PiMeterTranslationStore {
private static final String MAP_SIMPLE_NAME = "meter";
@Override
protected String mapSimpleName() {
return MAP_SIMPLE_NAME;
}
}