Interface PortState

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

    @Generated("mdsal-binding-generator")
    public interface PortState
    extends org.opendaylight.yangtools.yang.binding.DataObject

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

     grouping port-state {
       leaf link-down {
         type boolean;
       }
       leaf blocked {
         type boolean;
       }
       leaf live {
         type boolean;
       }
     }
     
    The schema path to identify an instance is opendaylight-port-types/port-state
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        Boolean getLinkDown()
        Return linkDown, or null if it is not present.
        Returns:
        java.lang.Boolean linkDown, or null if it is not present.
      • isLinkDown

        @Deprecated(forRemoval=true)
        default Boolean isLinkDown()
        Deprecated, for removal: This API element is subject to removal in a future version.
      • getBlocked

        Boolean getBlocked()
        Return blocked, or null if it is not present.
        Returns:
        java.lang.Boolean blocked, or null if it is not present.
      • isBlocked

        @Deprecated(forRemoval=true)
        default Boolean isBlocked()
        Deprecated, for removal: This API element is subject to removal in a future version.
      • getLive

        Boolean getLive()
        Return live, or null if it is not present.
        Returns:
        java.lang.Boolean live, or null if it is not present.
      • isLive

        @Deprecated(forRemoval=true)
        default Boolean isLive()
        Deprecated, for removal: This API element is subject to removal in a future version.