diff options
author | gummar <raj.gumma@est.tech> | 2019-11-06 11:48:57 +0000 |
---|---|---|
committer | gummar <raj.gumma@est.tech> | 2019-11-22 18:14:04 +0000 |
commit | 73a34e905c6abdad567b7063c6e9c3aaa1e42f07 (patch) | |
tree | 782455409170a0d09514f31b2ccaa7de4725ce7c /ms/blueprintsprocessor/application/src/main/kotlin | |
parent | 4dfd7d6f90445fb0a52ccff0a683c8240e4ee9b1 (diff) |
CCSDK-1864 : PNF Use Case Move from Jython to Kotlin using CDS Framework
Change-Id: I58eb134a07345d25be6d64dc614f25fc73ecf554
Signed-off-by: gummar <raj.gumma@est.tech>
Issue-ID: CCSDK-1864
Diffstat (limited to 'ms/blueprintsprocessor/application/src/main/kotlin')
-rw-r--r-- | ms/blueprintsprocessor/application/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/uat/UatExecutor.kt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ms/blueprintsprocessor/application/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/uat/UatExecutor.kt b/ms/blueprintsprocessor/application/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/uat/UatExecutor.kt index 6678075bd..4e97460d3 100644 --- a/ms/blueprintsprocessor/application/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/uat/UatExecutor.kt +++ b/ms/blueprintsprocessor/application/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/uat/UatExecutor.kt @@ -304,6 +304,10 @@ class UatExecutor( return realAnswer } + override suspend fun <T> retry(times: Int, initialDelay: Long, delay: Long, block: suspend (Int) -> T): T { + return super.retry(times, initialDelay, delay, block) + } + fun asServiceDefinition() = ServiceDefinition(selector, expectations) |