Interface PeerUp

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

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

    This class represents the following YANG schema fragment defined in module bmp-message

     grouping peer-up {
       leaf local-address {
         type inet:ip-address-no-zone;
       }
       leaf local-port {
         type inet:port-number;
       }
       leaf remote-port {
         type inet:port-number;
       }
       container sent-open {
         uses open-msg;
       }
       container received-open {
         uses open-msg;
       }
       container information {
         uses string-informations;
       }
     }
     
    The schema path to identify an instance is bmp-message/peer-up
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static @NonNull org.opendaylight.yangtools.yang.common.QName QNAME  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      @Nullable Information getInformation()  
      @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressNoZone getLocalAddress()
      The local IP address associated with the peering TCP session.
      @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber getLocalPort()
      The local port number associated with the peering TCP session.
      @Nullable ReceivedOpen getReceivedOpen()
      The full OPEN message received by the monitored router from its peer.
      @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber getRemotePort()
      The remote port number associated with the peering TCP session.
      @Nullable SentOpen getSentOpen()
      The full OPEN message transmitted by the monitored router to its peer.
      Class<? extends PeerUp> implementedInterface()  
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressNoZone getLocalAddress()
        The local IP address associated with the peering TCP session.
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressNoZone localAddress, or null if not present
      • getLocalPort

        @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber getLocalPort()
        The local port number associated with the peering TCP session.
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber localPort, or null if not present
      • getRemotePort

        @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber getRemotePort()
        The remote port number associated with the peering TCP session.
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber remotePort, or null if not present
      • getSentOpen

        @Nullable SentOpen getSentOpen()
        The full OPEN message transmitted by the monitored router to its peer.
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bmp.message.rev200120.peer.up.SentOpen sentOpen, or null if not present
      • getReceivedOpen

        @Nullable ReceivedOpen getReceivedOpen()
        The full OPEN message received by the monitored router from its peer.
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bmp.message.rev200120.peer.up.ReceivedOpen receivedOpen, or null if not present
      • getInformation

        @Nullable Information getInformation()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bmp.message.rev200120.peer.up.Information information, or null if not present