Interface NoPathObject

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

    public interface NoPathObject
    extends org.opendaylight.yangtools.yang.binding.DataObject, Object
    NO-PATH Object

    This class represents the following YANG schema fragment defined in module pcep-types

     grouping no-path-object {
       uses object;
       leaf nature-of-issue {
         type uint8;
       }
       leaf unsatisfied-constraints {
         when "nature-of-issue = 0" {
         }
         type boolean;
         default false;
       }
     }
     
    The schema path to identify an instance is pcep-types/no-path-object
    • Field Detail

      • QNAME

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

      • implementedInterface

        Class<? extends NoPathObject> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
        Specified by:
        implementedInterface in interface Object
        Specified by:
        implementedInterface in interface ObjectHeader
      • getNatureOfIssue

        @Nullable org.opendaylight.yangtools.yang.common.Uint8 getNatureOfIssue()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint8 natureOfIssue, or null if not present
      • isUnsatisfiedConstraints

        @Nullable Boolean isUnsatisfiedConstraints()
        Returns:
        java.lang.Boolean unsatisfiedConstraints, or null if not present