Interface InstanceEndpointLocalRemote

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

    @Generated("mdsal-binding-generator")
    public interface InstanceEndpointLocalRemote
    extends org.opendaylight.yangtools.yang.binding.DataObject
    A generic specification of a local or remote endpoint

    This class represents the following YANG schema fragment defined in module openconfig-network-instance

     grouping instance-endpoint-local-remote {
       choice local-remote {
         case local {
           leaf interface {
             type leafref {
               path /network-instances/network-instance/interfaces/config/interface;
             }
           }
         }
         case remote {
           leaf neighbor {
             type inet:ip-address;
           }
           leaf virtual-circuit-identifier {
             type uint32;
           }
         }
       }
     }
     
    The schema path to identify an instance is openconfig-network-instanceinstance-endpoint-local-remote
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        LocalRemote getLocalRemote()
        Return localRemote, or null if it is not present.
             
                 Configuration relating to an endpoint which can either be local (an interface),
                 or remote. In the case where it is remote a neighbor IP address and
                 virtual-circuit identifier must be specified
             
         
        Returns:
        LocalRemote localRemote, or null if it is not present.