From 222018349b49d229fc95a3939f4eaad3a3b663a8 Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Fri, 12 Feb 2021 09:26:24 -0500 Subject: More sonars in models Addressed the following issues: - change visibility of constructor - assert exception type Issue-ID: POLICY-2905 Change-Id: Iaededb32802e4facbbc776ae51d05d2ef5c60b93 Signed-off-by: Jim Hahn --- .../src/main/java/org/onap/policy/simulators/TopicServer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'models-interactions') diff --git a/models-interactions/model-simulators/src/main/java/org/onap/policy/simulators/TopicServer.java b/models-interactions/model-simulators/src/main/java/org/onap/policy/simulators/TopicServer.java index 4c01511da..004a2e20c 100644 --- a/models-interactions/model-simulators/src/main/java/org/onap/policy/simulators/TopicServer.java +++ b/models-interactions/model-simulators/src/main/java/org/onap/policy/simulators/TopicServer.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * ONAP * ================================================================================ - * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ public abstract class TopicServer implements TopicListener { * @param sink sink to which responses should be published * @param source source from which requests arrive */ - public TopicServer(TopicSink sink, TopicSource source, Coder coder, Class reqClass) { + protected TopicServer(TopicSink sink, TopicSource source, Coder coder, Class reqClass) { this.sink = sink; this.source = source; this.coder = coder; -- cgit 1.2.3-korg