Interface RecordRouteSubobjects
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
ReportedHops1,SecondaryRecordRouteSubobjects,Subobject,Subobject,SubobjectContainer,SubobjectContainer
public interface RecordRouteSubobjects extends org.opendaylight.yangtools.yang.binding.DataObjectThis class represents the following YANG schema fragment defined in module rsvp
grouping record-route-subobjects { leaf protection-available { type boolean; default false; } leaf protection-in-use { type boolean; default false; } choice subobject-type { case ip-prefix-case { container ip-prefix { uses ip-prefix-subobject; } } case label-case { container label { uses label-subobject; leaf global { type boolean; default false; } } } case unnumbered-case { container unnumbered { uses unnumbered-subobject; } } case path-key-case { container path-key { uses path-key-subobject; } } } }The schema path to identify an instance is rsvp/record-route-subobjects
-
-
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 SubobjectTypegetSubobjectType()Class<? extends RecordRouteSubobjects>implementedInterface()BooleanisProtectionAvailable()BooleanisProtectionInUse()
-
-
-
Method Detail
-
implementedInterface
Class<? extends RecordRouteSubobjects> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
isProtectionAvailable
Boolean isProtectionAvailable()
- Returns:
java.lang.BooleanprotectionAvailable, ornullif not present
-
isProtectionInUse
Boolean isProtectionInUse()
- Returns:
java.lang.BooleanprotectionInUse, ornullif not present
-
getSubobjectType
SubobjectType getSubobjectType()
- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.record.route.subobjects.SubobjectTypesubobjectType, ornullif not present
-
-