Package net.floodlightcontroller.counter.CounterStore

Examples of net.floodlightcontroller.counter.CounterStore.NetworkLayer


    protected void getOneSwitchCounterCategoriesJson(Map<String, Object> model,
                                                     String switchID,
                                                     String counterName,
                                                     String layer) {
        String fullCounterName = "";
        NetworkLayer nl = NetworkLayer.L3;

        try {
            counterName = URLDecoder.decode(counterName, "UTF-8");
            layer = URLDecoder.decode(layer, "UTF-8");
            fullCounterName = switchID + ICounterStoreService.TitleDelimitor + counterName;
View Full Code Here

TOP

Related Classes of net.floodlightcontroller.counter.CounterStore.NetworkLayer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.