Interface RemoteDpns

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<RemoteDpns>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<DpnsTeps>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<RemoteDpnsKey>

    public interface RemoteDpns
    extends org.opendaylight.yangtools.yang.binding.ChildOf<DpnsTeps>, org.opendaylight.yangtools.yang.binding.Augmentable<RemoteDpns>, org.opendaylight.yangtools.yang.binding.Identifiable<RemoteDpnsKey>

    This class represents the following YANG schema fragment defined in module itm-state

     list remote-dpns {
       key destination-dpn-id;
       leaf destination-dpn-id {
         type uint64;
       }
       leaf tunnel-name {
         type string;
       }
       leaf monitoring-enabled {
         type boolean;
       }
       leaf monitoring-interval {
         type uint16 {
           range 1000..30000;
         }
       }
       leaf internal {
         type boolean;
       }
     }
     
    The schema path to identify an instance is itm-state/dpn-teps-state/dpns-teps/remote-dpns

    To create instances of this class use RemoteDpnsBuilder.

    See Also:
    RemoteDpnsBuilder, RemoteDpnsKey
    • Field Detail

      • QNAME

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

      • implementedInterface

        default java.lang.Class<RemoteDpns> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getDestinationDpnId

        @Nullable org.opendaylight.yangtools.yang.common.Uint64 getDestinationDpnId()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 destinationDpnId, or null if not present
      • getTunnelName

        @Nullable java.lang.String getTunnelName()
        Returns:
        java.lang.String tunnelName, or null if not present
      • isMonitoringEnabled

        @Nullable java.lang.Boolean isMonitoringEnabled()
        Returns:
        java.lang.Boolean monitoringEnabled, or null if not present
      • getMonitoringInterval

        @Nullable org.opendaylight.yangtools.yang.common.Uint16 getMonitoringInterval()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint16 monitoringInterval, or null if not present
      • isInternal

        @Nullable java.lang.Boolean isInternal()
        represents whether this is an internal or external tunnel.
        Returns:
        java.lang.Boolean internal, or null if not present