Interface StatefulPreferences

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

    public interface StatefulPreferences
    extends org.opendaylight.yangtools.yang.binding.DataObject

    This class represents the following YANG schema fragment defined in module odl-pcep-stateful-stats

     grouping stateful-preferences {
       leaf instantiation {
         type boolean;
         default false;
       }
       leaf stateful {
         type boolean;
         default false;
       }
       leaf active {
         type boolean;
         default false;
       }
     }
     
    The schema path to identify an instance is odl-pcep-stateful-stats/stateful-preferences
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        @Nullable Boolean isInstantiation()
        Represents peer's instantiation capability.
        Returns:
        java.lang.Boolean instantiation, or null if not present
      • isStateful

        @Nullable Boolean isStateful()
        Represents peer's stateful/stateless capability.
        Returns:
        java.lang.Boolean stateful, or null if not present
      • isActive

        @Nullable Boolean isActive()
        Represents peer's LSP update capability.
        Returns:
        java.lang.Boolean active, or null if not present