Add Get function in Netconf execution service for operational commands
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / netconf-executor / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / netconf / executor / api / NetconfRpcService.kt
index 60345b5..ecb6267 100644 (file)
@@ -1,5 +1,6 @@
 /*
  * Copyright © 2017-2018 AT&T Intellectual Property.
+ * Modifications Copyright (c) 2019 IBM, Bell Canada
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -139,4 +140,12 @@ interface NetconfRpcService {
      * @return Device response
      */
     fun asyncRpc(request: String, messageId: String): DeviceResponse
+
+    /**
+     * Get
+     *
+     * @param filter filter content for operational command
+     * @return Device response
+     */
+    fun get(filter: String): DeviceResponse
 }
\ No newline at end of file