Package org.openflow.protocol.factory

Examples of org.openflow.protocol.factory.OFVendorActionRegistry


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());
    }
View Full Code Here

TOP

Related Classes of org.openflow.protocol.factory.OFVendorActionRegistry

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.