Package com.bigswitch.floodlight.vendor

Source Code of com.bigswitch.floodlight.vendor.OFVendorActions

package com.bigswitch.floodlight.vendor;

import org.openflow.protocol.factory.OFVendorActionRegistry;

public final class OFVendorActions {
    public static final void registerStandardVendorActions() {
        OFVendorActionRegistry registry = OFVendorActionRegistry.getInstance();
        registry.register(OFActionBigSwitchVendor.BSN_VENDOR_ID, new OFBigSwitchVendorActionFactory());
        registry.register(OFActionNiciraVendor.NICIRA_VENDOR_ID, new OFNiciraVendorActionFactory());
    }
}
TOP

Related Classes of com.bigswitch.floodlight.vendor.OFVendorActions

TOP
Copyright © 2018 www.massapi.com. 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.