From f719d69788983665337e68d949ca692a4aa63151 Mon Sep 17 00:00:00 2001 From: Martin Bobak Date: Tue, 4 Feb 2014 14:27:57 +0100 Subject: [PATCH] operation, store, path and data properties added to Data change event model Change-Id: I0b1c39e23506988528614b33c4a49cf8e00802ea Signed-off-by: Martin Bobak --- .../main/yang/opendaylight-md-sal-remote.yang | 27 ++++++++++++++++--- 1 file changed, 23 insertions(+), 4 deletions(-) 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 "; + } } } -- 2.36.6