aboutsummaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin
diff options
context:
space:
mode:
authorLasse Kaihlavirta <l.kaihlavirt@partner.samsung.com>2020-10-21 10:54:28 +0300
committerLasse Kaihlavirta <l.kaihlavirt@partner.samsung.com>2020-10-21 10:54:28 +0300
commit6b84093088b77a10764693760d83541b64e3d784 (patch)
tree0ffcca031208b5e1be21d381b9c5173d5d4a8294 /ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin
parent576f81eedeed766f28ffa0f5841dd40507e48b24 (diff)
Update AAI endpoints to /aai/v22 for Honolulu
- Update all /aai/v21 references to /aai/v22 for Honolulu - note that the previous https://gerrit.onap.org/r/c/ccsdk/cds/+/114057 was for Guilin only Issue-ID: CCSDK-2914 Signed-off-by: Lasse Kaihlavirta <l.kaihlavirt@partner.samsung.com> Change-Id: I8103b12610a9de7263789a0852140f2f0bb09393
Diffstat (limited to 'ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin')
-rw-r--r--ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/RestClientServiceTest.kt22
1 files changed, 11 insertions, 11 deletions
diff --git a/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/RestClientServiceTest.kt b/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/RestClientServiceTest.kt
index f38c188a0..23ac1635b 100644
--- a/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/RestClientServiceTest.kt
+++ b/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/RestClientServiceTest.kt
@@ -222,7 +222,7 @@ class RestClientServiceTest {
val get1 = async(start = CoroutineStart.LAZY) {
restClientService.exchangeNB(
HttpMethod.GET.name,
- "/sample/aai/v21/business/customers", "", headers,
+ "/sample/aai/v22/business/customers", "", headers,
Customer::class.java
).body
}
@@ -230,7 +230,7 @@ class RestClientServiceTest {
val get2 = async(start = CoroutineStart.LAZY) {
restClientService.exchangeNB(
HttpMethod.GET.name,
- "/sample/aai/v21/business/customers", "", headers,
+ "/sample/aai/v22/business/customers", "", headers,
Customer::class.java
).body
}
@@ -238,7 +238,7 @@ class RestClientServiceTest {
val post = async(start = CoroutineStart.LAZY) {
restClientService.exchangeNB(
HttpMethod.POST.name,
- "/sample/aai/v21/business/customers", post1, headers,
+ "/sample/aai/v22/business/customers", post1, headers,
String::class.java
).body
}
@@ -246,7 +246,7 @@ class RestClientServiceTest {
val put = async(start = CoroutineStart.LAZY) {
restClientService.exchangeNB(
HttpMethod.PUT.name,
- "/sample/aai/v21/business/customers", post1, headers,
+ "/sample/aai/v22/business/customers", post1, headers,
String::class.java
).body
}
@@ -254,7 +254,7 @@ class RestClientServiceTest {
val patch = async(start = CoroutineStart.LAZY) {
restClientService.exchangeNB(
HttpMethod.PATCH.name,
- "/sample/aai/v21/business/customers", post1, headers,
+ "/sample/aai/v22/business/customers", post1, headers,
String::class.java
).body
}
@@ -262,7 +262,7 @@ class RestClientServiceTest {
val delete = async(start = CoroutineStart.LAZY) {
restClientService.exchangeNB(
HttpMethod.DELETE.name,
- "/sample/aai/v21/business/customers", "", headers,
+ "/sample/aai/v22/business/customers", "", headers,
String::class.java
).body
}
@@ -321,7 +321,7 @@ open class SampleController {
@GetMapping("/basic")
fun getBasic(): String = "Basic request arrived successfully"
- @GetMapping("/aai/v21/business/customers")
+ @GetMapping("/aai/v22/business/customers")
fun getAaiCustomers(
@RequestHeader(name = "X-TransactionId", required = true)
transId: String,
@@ -339,7 +339,7 @@ open class SampleController {
"}"
}
- @PostMapping("/aai/v21/business/customers")
+ @PostMapping("/aai/v22/business/customers")
fun postAaiCustomers(
@RequestHeader(name = "X-TransactionId", required = true)
transId: String,
@@ -352,7 +352,7 @@ open class SampleController {
return "The message is successfully posted"
}
- @PutMapping("/aai/v21/business/customers")
+ @PutMapping("/aai/v22/business/customers")
fun putAaiCustomers(
@RequestHeader(name = "X-TransactionId", required = true)
transId: String,
@@ -365,7 +365,7 @@ open class SampleController {
return "The put request is success"
}
- @PatchMapping("/aai/v21/business/customers")
+ @PatchMapping("/aai/v22/business/customers")
fun patchAaiCustomers(
@RequestHeader(name = "X-TransactionId", required = true)
transId: String,
@@ -378,7 +378,7 @@ open class SampleController {
return "The patch request is success"
}
- @DeleteMapping("/aai/v21/business/customers")
+ @DeleteMapping("/aai/v22/business/customers")
fun deleteAaiCustomers(
@RequestHeader(name = "X-TransactionId", required = true)
transId: String,