Interface ChangedByParms

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

    @Generated("mdsal-binding-generator")
    public interface ChangedByParms
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Common parameters to identify the source of a change event, such as a configuration or capability change.

    This class represents the following YANG schema fragment defined in module ietf-netconf-notifications

     grouping changed-by-parms {
       container changed-by {
         choice server-or-user {
           case server {
             leaf server {
               type empty;
             }
           }
           case by-user {
             uses common-session-parms;
           }
         }
       }
     }
     
    The schema path to identify an instance is ietf-netconf-notifications/changed-by-parms
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        ChangedBy getChangedBy()
        Return changedBy, or null if it is not present.
             
                 Indicates the source of the change. If caused by internal action, then the empty
                 leaf 'server' will be present. If caused by a management session, then the name,
                 remote host address, and session ID of the session that made the change will be
                 reported.
             
         
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.changed.by.parms.ChangedBy changedBy, or null if it is not present.