From 9d4d28c05d214e906731f4bf536e1428df6925b6 Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Mon, 8 Jul 2019 09:53:26 -0400 Subject: Fix models due to sonar changes in common Fixed breakages due to changes made in policy/common to satisfy sonar. Change-Id: I7de701e743664afb5963a454c59478d1a1c83e87 Issue-ID: POLICY-1791 Signed-off-by: Jim Hahn --- .../org/onap/policy/models/sim/pdp/PdpSimulatorActivator.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'models-sim/policy-models-sim-pdp/src/main/java') diff --git a/models-sim/policy-models-sim-pdp/src/main/java/org/onap/policy/models/sim/pdp/PdpSimulatorActivator.java b/models-sim/policy-models-sim-pdp/src/main/java/org/onap/policy/models/sim/pdp/PdpSimulatorActivator.java index 502dec7b3..735784ee6 100644 --- a/models-sim/policy-models-sim-pdp/src/main/java/org/onap/policy/models/sim/pdp/PdpSimulatorActivator.java +++ b/models-sim/policy-models-sim-pdp/src/main/java/org/onap/policy/models/sim/pdp/PdpSimulatorActivator.java @@ -26,7 +26,7 @@ import java.util.Properties; import java.util.Random; import lombok.Getter; import lombok.Setter; -import org.onap.policy.common.endpoints.event.comm.TopicEndpoint; +import org.onap.policy.common.endpoints.event.comm.TopicEndpointManager; import org.onap.policy.common.endpoints.event.comm.TopicSink; import org.onap.policy.common.endpoints.event.comm.TopicSource; import org.onap.policy.common.endpoints.listeners.MessageTypeDispatcher; @@ -82,8 +82,8 @@ public class PdpSimulatorActivator { public PdpSimulatorActivator(final PdpSimulatorParameterGroup pdpSimulatorParameterGroup, final Properties topicProperties) { - topicSinks = TopicEndpoint.manager.addTopicSinks(topicProperties); - topicSources = TopicEndpoint.manager.addTopicSources(topicProperties); + topicSinks = TopicEndpointManager.getManager().addTopicSinks(topicProperties); + topicSources = TopicEndpointManager.getManager().addTopicSources(topicProperties); final int random = RANDOM.nextInt(); final String instanceId = "pdp_" + random; @@ -100,8 +100,8 @@ public class PdpSimulatorActivator { // @formatter:off this.manager = new ServiceManager() .addAction("topics", - TopicEndpoint.manager::start, - TopicEndpoint.manager::shutdown) + TopicEndpointManager.getManager()::start, + TopicEndpointManager.getManager()::shutdown) .addAction("set alive", () -> setAlive(true), () -> setAlive(false)) -- cgit 1.2.3-korg