X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-remote%2Fsrc%2Fmain%2Fyang%2Fopendaylight-md-sal-remote.yang;h=d12e252711de8834072c117831801e01f1e30865;hb=b2cb02f62ab7c7599e8d94fe92d1ce63e17d599b;hp=cc77af57d6abf328adb553fe76e7ff2aa6fc373e;hpb=7f54d73e129538cb777c110af28eb7c72c55a9b0;p=controller.git 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 "; + } } }