diff options
author | Jim Hahn <jrh3@att.com> | 2019-07-27 08:20:17 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2019-07-29 15:30:06 -0400 |
commit | f14578b9c5d9a98cceb5342d69b0326289b1690c (patch) | |
tree | 74af4f4e2de4e4b64b01d31b914ace84431dc8df /policy-endpoints/src/test/resources | |
parent | 4513f428543dbd09f855fdd392d90d628f5d403e (diff) |
Add addTopic(List<TopicParams>)
New services are typically configured using TopicParameters. These
are converted into Properties before being passed to
TopicEndpoint.addTopic(), which then converts them into BusTopicParams
before configuring a given topic. Added
TopicEndpoint.addTopic(List<TopicParams>), which makes it possible
to configure the topics without going into the intermediate Properties.
Furthermore, because TopicParams is a subclass of BusTopicParams, no
conversion is needed for that either, so the TopicParams can be passed
directly into the configuration classes.
Incorporated changes from review.
Change-Id: Id87e2c6812e36ae1a3ac680e6b35208667971782
Issue-ID: POLICY-1953
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'policy-endpoints/src/test/resources')
-rw-r--r-- | policy-endpoints/src/test/resources/org/onap/policy/common/endpoints/event/comm/TopicEndpointProxyTest.json | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/policy-endpoints/src/test/resources/org/onap/policy/common/endpoints/event/comm/TopicEndpointProxyTest.json b/policy-endpoints/src/test/resources/org/onap/policy/common/endpoints/event/comm/TopicEndpointProxyTest.json index 3402a524..9c8d78e5 100644 --- a/policy-endpoints/src/test/resources/org/onap/policy/common/endpoints/event/comm/TopicEndpointProxyTest.json +++ b/policy-endpoints/src/test/resources/org/onap/policy/common/endpoints/event/comm/TopicEndpointProxyTest.json @@ -8,13 +8,13 @@ "recentEvents" : [ ], "alive" : false, "locked" : false, - "apiKey" : null, - "apiSecret" : null, + "apiKey" : "my-api-key", + "apiSecret" : "my-api-secret", "useHttps" : true, "allowSelfSignedCerts" : true, "consumerGroup" : "${obj.topicSources[0].consumerGroup}", "consumerInstance" : "${obj.topicSources[0].consumerInstance}", - "fetchTimeout" : 15000, + "fetchTimeout" : 101, "fetchLimit" : 100, "topicCommInfrastructure" : "UEB" }, { @@ -49,8 +49,8 @@ "recentEvents" : [ ], "alive" : false, "locked" : false, - "apiKey" : null, - "apiSecret" : null, + "apiKey" : "my-api-key", + "apiSecret" : "my-api-secret", "useHttps" : true, "allowSelfSignedCerts" : true, "topicCommInfrastructure" : "UEB", |