Examples of OFRoleReplyVendorData


Examples of org.openflow.vendor.nicira.OFRoleReplyVendorData

    private OFMessage getRoleReply(int xid, Role role) {
        OFVendor vm = (OFVendor)BasicFactory.getInstance()
                .getMessage(OFType.VENDOR);
        vm.setXid(xid);
        vm.setVendor(OFNiciraVendorData.NX_VENDOR_ID);
        OFRoleReplyVendorData replyData = new OFRoleReplyVendorData();
        replyData.setRole(role.toNxRole());
        vm.setVendorData(replyData);
        return vm;
    }
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.