Interface PcepMessageListener

  • All Superinterfaces:
    EventListener, org.opendaylight.yangtools.yang.binding.NotificationListener

    public interface PcepMessageListener
    extends org.opendaylight.yangtools.yang.binding.NotificationListener
    Interface for implementing the following YANG notifications defined in module pcep-message
     notification open {
       uses pcep:open-message;
     }
     notification keepalive {
       uses pcep:keepalive-message;
     }
     notification pcreq {
       uses pcep:pcreq-message;
     }
     notification pcrep {
       uses pcep:pcrep-message;
     }
     notification pcntf {
       uses pcep:pcntf-message;
     }
     notification pcerr {
       uses pcep:pcerr-message;
     }
     notification close {
       uses pcep:close-message;
     }
     notification starttls {
       uses pcep:start-tls-message;
     }
     notification pcmonreq {
       uses pcep:pcreq-message;
     }
     notification pcmonrep {
       uses pcep:pcmonrep-message;
     }
     
    • Method Detail

      • onOpen

        void onOpen​(Open notification)
      • onKeepalive

        void onKeepalive​(Keepalive notification)
      • onPcreq

        void onPcreq​(Pcreq notification)
      • onPcrep

        void onPcrep​(Pcrep notification)
      • onPcntf

        void onPcntf​(Pcntf notification)
      • onPcerr

        void onPcerr​(Pcerr notification)
      • onClose

        void onClose​(Close notification)
      • onStarttls

        void onStarttls​(Starttls notification)
      • onPcmonreq

        void onPcmonreq​(Pcmonreq notification)
      • onPcmonrep

        void onPcmonrep​(Pcmonrep notification)