X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-xsql%2Fsrc%2Fmain%2Fyang%2FXSQL.yang;fp=opendaylight%2Fmd-sal%2Fsal-dom-xsql%2Fsrc%2Fmain%2Fyang%2FXSQL.yang;h=0000000000000000000000000000000000000000;hb=3e155bc35536039f93a079128c0e490465384722;hp=1c7a4ff8482855e2561de3558ebdc212014739c6;hpb=bd1cb1ea115b99847a2d305a6df8336cd3988cf3;p=controller.git diff --git a/opendaylight/md-sal/sal-dom-xsql/src/main/yang/XSQL.yang b/opendaylight/md-sal/sal-dom-xsql/src/main/yang/XSQL.yang deleted file mode 100644 index 1c7a4ff848..0000000000 --- a/opendaylight/md-sal/sal-dom-xsql/src/main/yang/XSQL.yang +++ /dev/null @@ -1,74 +0,0 @@ -module XSQL{ - yang-version 1; - namespace "http://netconfcentral.org/ns/XSQL"; - prefix XSQL; - - import config { prefix config; revision-date 2013-04-05; } - import opendaylight-md-sal-binding { prefix mdsal; revision-date 2013-10-28; } - import rpc-context { prefix rpcx; revision-date 2013-06-17; } - import opendaylight-md-sal-dom {prefix sal;} - import opendaylight-md-sal-common {prefix common;} - - organization "Netconf Central"; - contact "Sharon Aicler "; - description "YANG version of the XSQL status"; - - revision "2014-06-26" { - description "XSQL module initial version"; - } - - container XSQL { - presence "Indicates the XSQL service is available"; - description "Container to indicate the XSQL availability"; - leaf port { - type string; - config false; - mandatory true; - description "The port the XSQL binds on"; - } - } - - identity XSQL { - base config:module-type; - config:java-name-prefix XSQL; - status deprecated; - } - - augment "/config:modules/config:module/config:configuration" { - status deprecated; - case XSQL { - when "/config:modules/config:module/config:type = 'XSQL'"; - - container data-broker { - uses config:service-ref { - refine type { - mandatory false; - config:required-identity mdsal:binding-async-data-broker; - } - } - } - - container async-data-broker { - uses config:service-ref { - refine type { - mandatory false; - config:required-identity sal:dom-async-data-broker; - } - } - - } - - container schema-service { - uses config:service-ref { - refine type { - mandatory false; - config:required-identity sal:schema-service; - } - } - - } - - } - } - -}