diff options
author | lapentafd <francesco.lapenta@est.tech> | 2021-12-07 15:59:49 +0000 |
---|---|---|
committer | lapentafd <francesco.lapenta@est.tech> | 2021-12-08 11:07:03 +0000 |
commit | 5f46449a3a73a101fb6e7926dd48e1672ad3ed7b (patch) | |
tree | 453e33798d38515ef4a864f1095452946d7d0d5e /plugins/reception-plugins/src/main | |
parent | eed3e8be1194b4b9a9e1001fa24edbd024b18378 (diff) |
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 <francesco.lapenta@est.tech>
Diffstat (limited to 'plugins/reception-plugins/src/main')
-rw-r--r-- | plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/SdcReceptionHandlerConfigurationParameterGroup.java | 28 |
1 files changed, 12 insertions, 16 deletions
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<String> messageBusAddress; - private String user; - private String password; - private int pollingInterval; - private int pollingTimeout; - private int retryDelay; - private String consumerId; - private List<String> artifactTypes; - private String consumerGroup; - private String environmentName; + private @NotNull @NotBlank String asdcAddress; + private @NotNull @NotBlank List<String> 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<String> 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()); } } - |