All Superinterfaces:
org.opendaylight.yangtools.yang.binding.DataRoot

@Generated("mdsal-binding-generator") public interface NodeSslConnectionErrorData extends org.opendaylight.yangtools.yang.binding.DataRoot
Openflow node ssl connection error.

This class represents the following YANG schema fragment defined in module node-ssl-connection-error

 module node-ssl-connection-error {
   namespace urn:opendaylight:node-ssl-connection-error:service;
   prefix node-ssl-connection-error;
   import ietf-inet-types {
     prefix inet;
     revision-date 2013-07-15;
   }
   import system-notifications {
     prefix system-notifications;
     revision-date 2013-09-27;
   }
   revision 2019-07-23 {
   }
   typedef ssl-error-type {
     type enumeration {
       enum ssl-con-failed;
     }
   }
   grouping error-message {
     leaf type {
       type ssl-error-type;
     }
     leaf code {
       type uint16;
     }
     leaf node-ip-address {
       type inet:ip-address;
     }
     leaf data {
       type string;
     }
   }
   notification ssl-error {
     uses error-message;
     container switch-certificate {
       uses system-notifications:switch-certificate;
     }
   }
 }