Uses of Interface
org.openflow.protocol.vendor.OFVendorData

Packages that use OFVendorData
com.bigswitch.floodlight.vendor   
org.openflow.protocol   
org.openflow.protocol.factory   
org.openflow.protocol.vendor   
org.openflow.vendor.nicira   
org.openflow.vendor.openflow   
 

Uses of OFVendorData in com.bigswitch.floodlight.vendor
 

Classes in com.bigswitch.floodlight.vendor that implement OFVendorData
 class OFBigSwitchVendorData
          Base class for vendor data corresponding to BigSwitch vendor extensions BigSwitch vendor data always starts with a 4-byte integer data type value
 class OFBsnL2TableSetVendorData
           
 class OFBsnL2TableVendorData
           
 class OFBsnPktinSuppressionSetRequestVendorData
           
 class OFInterfaceIPReplyVendorData
           
 class OFInterfaceIPRequestVendorData
           
 class OFMirrorGetVendorDataReply
          Subclass of OFVendorData
 class OFMirrorGetVendorDataRequest
          Subclass of OFVendorData
 class OFMirrorSetVendorData
           
 class OFNetmaskGetVendorDataReply
          Subclass of OFVendorData
 class OFNetmaskGetVendorDataRequest
          Subclass of OFVendorData
 class OFNetmaskSetVendorData
           
 class OFNetmaskVendorData
          Class that represents the vendor data in the netmask table request extension implemented by Arista switches
 

Fields in com.bigswitch.floodlight.vendor with type parameters of type OFVendorData
protected static Instantiable<OFVendorData> OFNetmaskSetVendorData.instantiable
           
protected static Instantiable<OFVendorData> OFNetmaskGetVendorDataRequest.instantiable
           
protected static Instantiable<OFVendorData> OFNetmaskGetVendorDataReply.instantiable
           
protected static Instantiable<OFVendorData> OFMirrorGetVendorDataRequest.instantiable
           
protected static Instantiable<OFVendorData> OFMirrorGetVendorDataReply.instantiable
           
protected static Instantiable<OFVendorData> OFInterfaceIPRequestVendorData.instantiable
           
protected static Instantiable<OFVendorData> OFInterfaceIPReplyVendorData.instantiable
           
protected static Instantiable<OFVendorData> OFBsnPktinSuppressionSetRequestVendorData.instantiableSingleton
           
protected static Instantiable<OFVendorData> OFBsnL2TableSetVendorData.instantiableSingleton
           
 

Methods in com.bigswitch.floodlight.vendor that return types with arguments of type OFVendorData
static Instantiable<OFVendorData> OFNetmaskSetVendorData.getInstantiable()
           
static Instantiable<OFVendorData> OFNetmaskGetVendorDataRequest.getInstantiable()
           
static Instantiable<OFVendorData> OFNetmaskGetVendorDataReply.getInstantiable()
           
static Instantiable<OFVendorData> OFMirrorGetVendorDataRequest.getInstantiable()
           
static Instantiable<OFVendorData> OFMirrorGetVendorDataReply.getInstantiable()
           
static Instantiable<OFVendorData> OFInterfaceIPRequestVendorData.getInstantiable()
           
static Instantiable<OFVendorData> OFInterfaceIPReplyVendorData.getInstantiable()
           
static Instantiable<OFVendorData> OFBsnPktinSuppressionSetRequestVendorData.getInstantiable()
           
static Instantiable<OFVendorData> OFBsnL2TableSetVendorData.getInstantiable()
           
 

Uses of OFVendorData in org.openflow.protocol
 

Fields in org.openflow.protocol declared as OFVendorData
protected  OFVendorData OFVendor.vendorData
           
 

Methods in org.openflow.protocol that return OFVendorData
 OFVendorData OFVendor.getVendorData()
           
 

Methods in org.openflow.protocol with parameters of type OFVendorData
 void OFVendor.setVendorData(OFVendorData vendorData)
           
 

Uses of OFVendorData in org.openflow.protocol.factory
 

Methods in org.openflow.protocol.factory that return OFVendorData
 OFVendorData OFVendorDataFactory.getVendorData(OFVendorId vendorId, OFVendorDataType vendorDataType)
          Retrieves an OFVendorData instance corresponding to the specified OFVendorId and OFVendorDataType.
 OFVendorData FloodlightFactory.getVendorData(OFVendorId vendorId, OFVendorDataType vendorDataType)
           
 OFVendorData OFVendorDataFactory.parseVendorData(int vendorId, java.nio.ByteBuffer data, int length)
          Attempts to parse and return the OFVendorData contained in the given ByteBuffer, beginning right after the vendor id.
 OFVendorData FloodlightFactory.parseVendorData(int vendor, java.nio.ByteBuffer data, int length)
          Attempts to parse and return the OFVendorData contained in the given ChannelBuffer, beginning right after the vendor id.
 

Uses of OFVendorData in org.openflow.protocol.vendor
 

Classes in org.openflow.protocol.vendor that implement OFVendorData
 class OFByteArrayVendorData
          Basic implementation of OFVendorData that just treats the data as a byte array.
 

Fields in org.openflow.protocol.vendor with type parameters of type OFVendorData
protected  Instantiable<OFVendorData> OFVendorDataType.instantiable
          Object that instantiates the subclass of OFVendorData associated with this data type.
 

Methods in org.openflow.protocol.vendor that return OFVendorData
 OFVendorData OFVendorDataType.newInstance()
          Returns a new instance of a subclass of OFVendorData associated with this OFVendorDataType.
 

Methods in org.openflow.protocol.vendor that return types with arguments of type OFVendorData
 Instantiable<OFVendorData> OFVendorDataType.getInstantiable()
           
 

Method parameters in org.openflow.protocol.vendor with type arguments of type OFVendorData
 void OFVendorDataType.setInstantiable(Instantiable<OFVendorData> instantiable)
           
 

Constructor parameters in org.openflow.protocol.vendor with type arguments of type OFVendorData
OFBasicVendorDataType(long type, Instantiable<OFVendorData> instantiator)
          Store some information about the vendor data type, including wire protocol type number, derived class and instantiator.
OFVendorDataType(Instantiable<OFVendorData> instantiable)
          Construct a vendor data type with the specified instantiable.
 

Uses of OFVendorData in org.openflow.vendor.nicira
 

Classes in org.openflow.vendor.nicira that implement OFVendorData
 class OFNiciraVendorData
          Base class for vendor data corresponding to a Nicira vendor extension.
 class OFRoleReplyVendorData
          Subclass of OFVendorData representing the vendor data associated with a role reply vendor extension.
 class OFRoleRequestVendorData
          Subclass of OFVendorData representing the vendor data associated with a role request vendor extension.
 class OFRoleVendorData
          Class that represents the vendor data in the role request extension implemented by Open vSwitch to support high availability.
 

Fields in org.openflow.vendor.nicira with type parameters of type OFVendorData
protected static Instantiable<OFVendorData> OFRoleRequestVendorData.instantiable
           
protected static Instantiable<OFVendorData> OFRoleReplyVendorData.instantiable
           
 

Methods in org.openflow.vendor.nicira that return types with arguments of type OFVendorData
static Instantiable<OFVendorData> OFRoleRequestVendorData.getInstantiable()
           
static Instantiable<OFVendorData> OFRoleReplyVendorData.getInstantiable()
           
 

Uses of OFVendorData in org.openflow.vendor.openflow
 

Classes in org.openflow.vendor.openflow that implement OFVendorData
 class OFOpenFlowVendorData
          Base class for vendor data corresponding to extensions to OpenFlow 1.0.
 class OFQueueDeleteVendorData
          Class that represents the vendor data in the queue delete request
 class OFQueueModifyVendorData
          Class that represents the vendor data in the queue modify request
 class OFQueueVendorData
          Class that represents the vendor data in a queue modify or delete request
 

Fields in org.openflow.vendor.openflow with type parameters of type OFVendorData
protected static Instantiable<OFVendorData> OFQueueModifyVendorData.instantiable
           
protected static Instantiable<OFVendorData> OFQueueDeleteVendorData.instantiable
           
 

Methods in org.openflow.vendor.openflow that return types with arguments of type OFVendorData
static Instantiable<OFVendorData> OFQueueModifyVendorData.getInstantiable()
           
static Instantiable<OFVendorData> OFQueueDeleteVendorData.getInstantiable()