All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opendaylight.openflowplugin.applications.frm.ReconciliationJMXService Maven / Gradle / Ivy

There is a newer version: 0.19.1
Show newest version
/*
 * Copyright (c) 2020 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */

package org.opendaylight.openflowplugin.applications.frm;

import java.util.HashMap;
import java.util.Map;
import javax.inject.Inject;
import org.opendaylight.openflowplugin.api.openflow.FlowGroupCacheManager;

public class ReconciliationJMXService implements ReconciliationJMXServiceMBean {
    private FlowGroupCacheManager flowGroupCacheManager;

    @Inject
    public ReconciliationJMXService(final FlowGroupCacheManager floGroupCacheManager) {
        this.flowGroupCacheManager = floGroupCacheManager;
    }

    @Override
    public Map acquireReconciliationStates() {
        Map reconciliationStatesMap = new HashMap<>();
        flowGroupCacheManager.getReconciliationStates().forEach((datapathId, reconciliationState) ->
                reconciliationStatesMap.put(datapathId, reconciliationState.toString()));
        return reconciliationStatesMap;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy