Renaming Files having BluePrint to have Blueprint
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / restconf-executor / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / restconf / executor / RestconfExecutorExtensions.kt
index 2d3eb3b..61ab4c1 100644 (file)
@@ -21,9 +21,9 @@ import org.hibernate.annotations.common.util.impl.LoggerFactory
 import org.onap.ccsdk.cds.blueprintsprocessor.rest.restClientService
 import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BlueprintWebClientService
 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction
-import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintProcessorException
-import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintRetryException
-import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintDependencyService
+import org.onap.ccsdk.cds.controllerblueprints.core.BlueprintProcessorException
+import org.onap.ccsdk.cds.controllerblueprints.core.BlueprintRetryException
+import org.onap.ccsdk.cds.controllerblueprints.core.service.BlueprintDependencyService
 
 /**
  * Register the Restconf module exposed dependency
@@ -32,7 +32,7 @@ import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintDependencyS
 val log = LoggerFactory.logger(AbstractScriptComponentFunction::class.java)!!
 
 fun AbstractScriptComponentFunction.restconfClientService(selector: String): BlueprintWebClientService {
-    return BluePrintDependencyService.restClientService(selector)
+    return BlueprintDependencyService.restClientService(selector)
 }
 
 /**
@@ -60,7 +60,7 @@ suspend fun AbstractScriptComponentFunction.restconfMountDevice(
             log.info("NF was mounted successfully on ODL")
             result.body
         } else {
-            throw BluePrintRetryException("Wait for device($deviceId) to mount")
+            throw BlueprintRetryException("Wait for device($deviceId) to mount")
         }
     }
 
@@ -126,7 +126,7 @@ suspend fun AbstractScriptComponentFunction.genericPutPatchPostRequest(
         "PUT" -> log.info("sending PUT request, url: $requestUrl")
         "PATCH" -> log.info("sending PATCH request, url: $requestUrl")
         "POST" -> log.info("sending POST request, url: $requestUrl")
-        else -> throw BluePrintProcessorException("Illegal request type, only POST, PUT or PATCH allowed.")
+        else -> throw BlueprintProcessorException("Illegal request type, only POST, PUT or PATCH allowed.")
     }
     return webClientService.exchangeResource(requestType, requestUrl, payload as String, headers)
 }
@@ -143,7 +143,7 @@ suspend fun AbstractScriptComponentFunction.genericGetOrDeleteRequest(
     when (requestType.toUpperCase()) {
         "GET" -> log.info("sending GET request, url: $requestUrl")
         "DELETE" -> log.info("sending DELETE request, url: $requestUrl")
-        else -> throw BluePrintProcessorException("Illegal request type, only GET and DELETE allowed.")
+        else -> throw BlueprintProcessorException("Illegal request type, only GET and DELETE allowed.")
     }
     return webClientService.exchangeResource(requestType, requestUrl, "")
 }
@@ -173,7 +173,7 @@ suspend fun AbstractScriptComponentFunction.restconfMountDevice(
             log.info("NF was mounted successfully on ODL")
             result.body
         } else {
-            throw BluePrintRetryException("Wait for device with url($mountUrl) to mount")
+            throw BlueprintRetryException("Wait for device with url($mountUrl) to mount")
         }
     }