Package org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206
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 Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChangedBygetChangedBy()Return changedBy, ornullif it is not present.Class<? extends ChangedByParms>implementedInterface()
-
-
-
Method Detail
-
implementedInterface
Class<? extends ChangedByParms> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getChangedBy
ChangedBy getChangedBy()
Return changedBy, ornullif 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.ChangedBychangedBy, ornullif it is not present.
-
-