X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=tests%2Fhoneynode%2F1.2.1%2Fhoneynode-plugin-api%2Fsrc%2Fmain%2Fyang%2Fcommon%2Fnotifications%402008-07-14.yang;fp=tests%2Fhoneynode%2F1.2.1%2Fhoneynode-plugin-api%2Fsrc%2Fmain%2Fyang%2Fcommon%2Fnotifications%402008-07-14.yang;h=0000000000000000000000000000000000000000;hb=96d112bd194f0f39f3d79cc8d76af7594b42f37d;hp=77fbe982048504575b1d577d446694ae4f89e600;hpb=2d2281ada60005afe37419edfa331438d9faddda;p=transportpce.git diff --git a/tests/honeynode/1.2.1/honeynode-plugin-api/src/main/yang/common/notifications@2008-07-14.yang b/tests/honeynode/1.2.1/honeynode-plugin-api/src/main/yang/common/notifications@2008-07-14.yang deleted file mode 100644 index 77fbe9820..000000000 --- a/tests/honeynode/1.2.1/honeynode-plugin-api/src/main/yang/common/notifications@2008-07-14.yang +++ /dev/null @@ -1,83 +0,0 @@ -module notifications { - - namespace "urn:ietf:params:xml:ns:netconf:notification:1.0"; - prefix "ncEvent"; - - import ietf-yang-types { prefix yang; revision-date "2013-07-15";} - - organization - "IETF NETCONF WG"; - - contact - "netconf@ops.ietf.org"; - - description - "Conversion of the 'ncEvent' XSD in the - NETCONF Notifications RFC."; - - reference - "RFC 5277."; - - revision 2008-07-14 { - description "RFC 5277 version."; - } - - typedef streamNameType { - description - "The name of an event stream."; - type string; - } - - rpc create-subscription { - description - "The command to create a notification subscription. It - takes as argument the name of the notification stream - and filter. Both of those options limit the content of - the subscription. In addition, there are two time-related - parameters, startTime and stopTime, which can be used to - select the time interval of interest to the notification - replay feature."; - - input { - leaf stream { - description - "An optional parameter that indicates which stream of events - is of interest. If not present, then events in the default - NETCONF stream will be sent."; - type streamNameType; - default "NETCONF"; - } - - anyxml filter { - description - "An optional parameter that indicates which subset of all - possible events is of interest. The format of this - parameter is the same as that of the filter parameter - in the NETCONF protocol operations. If not present, - all events not precluded by other parameters will - be sent."; - } - - leaf startTime { - description - "A parameter used to trigger the replay feature and - indicates that the replay should start at the time - specified. If start time is not present, this is not a - replay subscription."; - type yang:date-and-time; - } - - leaf stopTime { - // must ". >= ../startTime"; - description - "An optional parameter used with the optional replay - feature to indicate the newest notifications of - interest. If stop time is not present, the notifications - will continue until the subscription is terminated. - Must be used with startTime."; - type yang:date-and-time; - } - } - } -} -