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
@Generated("mdsal-binding-generator") public interface TapFlowAttributes extends org.opendaylight.yangtools.yang.binding.DataObject
Grouping for Tap FlowThis 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 Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class<? extends DirectionBase>getDirection()Return direction, ornullif it is not present.org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.UuidgetSourcePort()Return sourcePort, ornullif it is not present.org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.UuidgetTapServiceId()Return tapServiceId, ornullif it is not present.Class<? extends TapFlowAttributes>implementedInterface()
-
-
-
Method Detail
-
implementedInterface
Class<? extends TapFlowAttributes> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getTapServiceId
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid getTapServiceId()
Return tapServiceId, ornullif it is not present.UUID of the Tap Service Instance- Returns:
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.UuidtapServiceId, ornullif it is not present.
-
getSourcePort
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid getSourcePort()
Return sourcePort, ornullif it is not present.Source port of traffic- Returns:
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.UuidsourcePort, ornullif it is not present.
-
getDirection
Class<? extends DirectionBase> getDirection()
Return direction, ornullif it is not present.Direction of traffic- Returns:
java.lang.Classdirection, ornullif it is not present.
-
-