Interface TapFlowAttributes

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    TapFlow

    public interface TapFlowAttributes
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Grouping for Tap Flow

    This class represents the following YANG schema fragment defined in module neutron-tapaas

     grouping tap-flow-attributes {
       leaf tap-service-id {
         type yang:uuid;
       }
       leaf source-port {
         type yang:uuid;
       }
       leaf direction {
         type identityref {
           base direction-base;
         }
       }
     }
     
    The schema path to identify an instance is neutron-tapaas/tap-flow-attributes
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        Class<? extends TapFlowAttributes> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getTapServiceId

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid getTapServiceId()
        UUID of the Tap Service Instance
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid tapServiceId, or null if not present
      • getSourcePort

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid getSourcePort()
        Source port of traffic
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid sourcePort, or null if not present
      • getDirection

        Class<? extends DirectionBase> getDirection()
        Direction of traffic
        Returns:
        java.lang.Class direction, or null if not present