From: Martin Bobak Date: Tue, 4 Feb 2014 13:27:57 +0000 (+0100) Subject: operation, store, path and data properties added to Data change event model X-Git-Tag: autorelease-tag-v20140601202136_82eb3f9~512 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=f719d69788983665337e68d949ca692a4aa63151 operation, store, path and data properties added to Data change event model Change-Id: I0b1c39e23506988528614b33c4a49cf8e00802ea Signed-off-by: Martin Bobak --- diff --git a/opendaylight/md-sal/sal-remote/src/main/yang/opendaylight-md-sal-remote.yang b/opendaylight/md-sal/sal-remote/src/main/yang/opendaylight-md-sal-remote.yang index cc77af57d6..d12e252711 100644 --- a/opendaylight/md-sal/sal-remote/src/main/yang/opendaylight-md-sal-remote.yang +++ b/opendaylight/md-sal/sal-remote/src/main/yang/opendaylight-md-sal-remote.yang @@ -9,8 +9,8 @@ module sal-remote { contact "Martin Bobak "; description - "This module contains the definition of types related to - Internet Assigned Numbers Authority. + "This module contains the definition of methods related to + sal remote model. Copyright (c)2013 Cisco Systems, Inc. All rights reserved. @@ -48,8 +48,27 @@ module sal-remote { notification data-changed-notification { description "Data change notification."; - leaf data-change-event { - type instance-identifier; + list data-change-event { + key path; + leaf path { + type instance-identifier; + } + leaf store { + type enumeration { + enum config; + enum operation; + } + } + leaf operation { + type enumeration { + enum created; + enum updated; + enum deleted; + } + } + anyxml data{ + description "DataObject "; + } } }