Interface DpnEndpoints

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<DpnEndpoints>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<ItmStateData>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject

    public interface DpnEndpoints
    extends org.opendaylight.yangtools.yang.binding.ChildOf<ItmStateData>, org.opendaylight.yangtools.yang.binding.Augmentable<DpnEndpoints>

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

     container dpn-endpoints {
       list DPN-TEPs-info {
         key DPN-ID;
         leaf DPN-ID {
           type uint64;
         }
         leaf dst-id {
           type int32 {
             range 1..2147483647;
           }
         }
         leaf up {
           status deprecated;
           type boolean;
           config false;
         }
         list tunnel-end-points {
           ordered-by user;
           key "ip-address tunnel-type";
           leaf ip-address {
             type inet:ip-address;
           }
           list tz-membership {
             key zone-name;
             leaf zone-name {
               type string;
             }
           }
           leaf interface-name {
             type string;
           }
           leaf tunnel-type {
             type identityref {
               base tunnel-type-base;
             }
           }
           leaf option-of-tunnel {
             type boolean;
             default false;
           }
           leaf option-tunnel-tos {
             type string {
               length 1..8;
             }
           }
         }
       }
     }
     
    The schema path to identify an instance is itm-state/dpn-endpoints

    To create instances of this class use DpnEndpointsBuilder.

    See Also:
    DpnEndpointsBuilder
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        @Nullable java.util.List<DPNTEPsInfo> getDPNTEPsInfo()
        Returns:
        java.util.List dPNTEPsInfo, or null if not present
      • nonnullDPNTEPsInfo

        default @NonNull java.util.List<DPNTEPsInfo> nonnullDPNTEPsInfo()
        Returns:
        java.util.List dPNTEPsInfo, or an empty list if it is not present