Interface Endpoint
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
Destination,Source
@Generated("mdsal-binding-generator") public interface Endpoint extends org.opendaylight.yangtools.yang.binding.DataObjectThis class represents the following YANG schema fragment defined in module aliveness-monitor
grouping endpoint { choice endpoint-type { case ip-address { leaf ip-address { type inet:ip-address; } } case interface { leaf mac-address { type yang:phys-address; } leaf interface-ip { type inet:ip-address; } leaf interface-name { type string; } } case host-name { leaf host-name { type string; } } } }The schema path to identify an instance is aliveness-monitor/endpoint
-
-
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 EndpointTypegetEndpointType()Return endpointType, ornullif it is not present.java.lang.Class<? extends Endpoint>implementedInterface()
-
-
-
Method Detail
-
implementedInterface
java.lang.Class<? extends Endpoint> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getEndpointType
EndpointType getEndpointType()
Return endpointType, ornullif it is not present.- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.genius.alivenessmonitor.rev160411.endpoint.EndpointTypeendpointType, ornullif it is not present.
-
-