From 5f46449a3a73a101fb6e7926dd48e1672ad3ed7b Mon Sep 17 00:00:00 2001 From: lapentafd Date: Tue, 7 Dec 2021 15:59:49 +0000 Subject: Moving @NotNull annotation to field level KeyStorePassword and KeyStorePath values can be expressed as simply null instead of "null" Issue-ID: POLICY-3604 Change-Id: I839bce33df4829fcc8d604f8ed1e52e6f50ef988 Signed-off-by: lapentafd --- ...eceptionHandlerConfigurationParameterGroup.java | 28 ++++++++++------------ 1 file changed, 12 insertions(+), 16 deletions(-) (limited to 'plugins/reception-plugins/src/main/java') diff --git a/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/SdcReceptionHandlerConfigurationParameterGroup.java b/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/SdcReceptionHandlerConfigurationParameterGroup.java index 942aa8d4..7964aa19 100644 --- a/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/SdcReceptionHandlerConfigurationParameterGroup.java +++ b/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/SdcReceptionHandlerConfigurationParameterGroup.java @@ -1,7 +1,7 @@ /*- * ============LICENSE_START======================================================= * Copyright (C) 2018 Intel. All rights reserved. - * Modifications Copyright (C) 2019 Nordix Foundation. + * Modifications Copyright (C) 2019-2021 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -32,21 +32,18 @@ import org.onap.policy.distribution.reception.parameters.ReceptionHandlerConfigu * format, which strictly adheres to the interface:IConfiguration, defined by SDC SDK. */ @Getter -@NotNull -@NotBlank public class SdcReceptionHandlerConfigurationParameterGroup extends ReceptionHandlerConfigurationParameterGroup { - - private String asdcAddress; - private List messageBusAddress; - private String user; - private String password; - private int pollingInterval; - private int pollingTimeout; - private int retryDelay; - private String consumerId; - private List artifactTypes; - private String consumerGroup; - private String environmentName; + private @NotNull @NotBlank String asdcAddress; + private @NotNull @NotBlank List messageBusAddress; + private @NotNull @NotBlank String user; + private @NotNull @NotBlank String password; + private @NotNull @NotBlank int pollingInterval; + private @NotNull @NotBlank int pollingTimeout; + private @NotNull @NotBlank int retryDelay; + private @NotNull @NotBlank String consumerId; + private @NotNull @NotBlank List artifactTypes; + private @NotNull @NotBlank String consumerGroup; + private @NotNull @NotBlank String environmentName; private String keyStorePath; private String keyStorePassword; private boolean activeServerTlsAuth; @@ -57,4 +54,3 @@ public class SdcReceptionHandlerConfigurationParameterGroup extends ReceptionHan super(SdcReceptionHandlerConfigurationParameterGroup.class.getSimpleName()); } } - -- cgit 1.2.3-korg