Package org.openflow.protocol.factory

Examples of org.openflow.protocol.factory.OFVendorActionRegistry.register()


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


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
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.