From 208e75751007395086ac2f8dad6f5a280173eea1 Mon Sep 17 00:00:00 2001 From: "a.sreekumar" Date: Thu, 25 Jul 2019 15:58:58 +0000 Subject: Changes to add missing topic parameters Changes to support parameters which would be critical to run in a secure environment. Change-Id: Ia7df174261041b35e57b9f1f2be7552e5dcd2cec Issue-ID: POLICY-1744 Signed-off-by: a.sreekumar --- .../event/comm/bus/internal/BusTopicParams.java | 105 +-------------------- 1 file changed, 5 insertions(+), 100 deletions(-) (limited to 'policy-endpoints/src/main/java/org/onap/policy/common/endpoints/event/comm/bus/internal/BusTopicParams.java') diff --git a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/event/comm/bus/internal/BusTopicParams.java b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/event/comm/bus/internal/BusTopicParams.java index b9817abf..9df7221f 100644 --- a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/event/comm/bus/internal/BusTopicParams.java +++ b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/event/comm/bus/internal/BusTopicParams.java @@ -4,6 +4,7 @@ * ================================================================================ * Copyright (C) 2018 Samsung Electronics Co., Ltd. All rights reserved. * Modifications Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved. + * Modifications Copyright (C) 2019 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,6 +24,8 @@ package org.onap.policy.common.endpoints.event.comm.bus.internal; import java.util.List; import java.util.Map; +import lombok.Getter; +import lombok.Setter; import org.apache.commons.lang3.StringUtils; /** @@ -45,6 +48,8 @@ import org.apache.commons.lang3.StringUtils; * useHttps does connection use HTTPS? * allowSelfSignedCerts are self-signed certificates allow */ +@Getter +@Setter public class BusTopicParams { private int port; @@ -79,106 +84,6 @@ public class BusTopicParams { return new TopicParamsBuilder(); } - public String getPartitionId() { - return partitionId; - } - - public String getUserName() { - return userName; - } - - public String getPassword() { - return password; - } - - public String getEnvironment() { - return environment; - } - - public String getAftEnvironment() { - return aftEnvironment; - } - - public String getPartner() { - return partner; - } - - public String getLatitude() { - return latitude; - } - - public String getLongitude() { - return longitude; - } - - public Map getAdditionalProps() { - return additionalProps; - } - - public List getServers() { - return servers; - } - - public String getTopic() { - return topic; - } - - public String getEffectiveTopic() { - return effectiveTopic; - } - - public String getApiKey() { - return apiKey; - } - - public String getApiSecret() { - return apiSecret; - } - - public String getConsumerGroup() { - return consumerGroup; - } - - public String getConsumerInstance() { - return consumerInstance; - } - - public int getFetchTimeout() { - return fetchTimeout; - } - - public int getFetchLimit() { - return fetchLimit; - } - - public String getClientName() { - return clientName; - } - - public String getHostname() { - return hostname; - } - - public int getPort() { - return port; - } - - public String getBasePath() { - return basePath; - } - - public boolean isManaged() { - return managed; - } - - public boolean isUseHttps() { - return useHttps; - } - - public boolean isAllowSelfSignedCerts() { - return allowSelfSignedCerts; - } - /** * Methods to Check if the property is INVALID. */ -- cgit 1.2.3-korg