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/test/resources/handling-sdc-null-parameters.json | |
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/test/resources/handling-sdc-null-parameters.json')
-rw-r--r-- | plugins/reception-plugins/src/test/resources/handling-sdc-null-parameters.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/reception-plugins/src/test/resources/handling-sdc-null-parameters.json b/plugins/reception-plugins/src/test/resources/handling-sdc-null-parameters.json new file mode 100644 index 00000000..6c9301a5 --- /dev/null +++ b/plugins/reception-plugins/src/test/resources/handling-sdc-null-parameters.json @@ -0,0 +1,27 @@ +{ + "name" : "parameterConfig1", + "asdcAddress": "localhost", + "messageBusAddress": [ + "a.com", + "b.com", + "c.com" + ], + "user": "policy", + "password": "policy", + "pollingInterval":20, + "pollingTimeout":30, + "retryDelay":30, + "consumerId": "policy-id", + "artifactTypes": [ + "TOSCA_CSAR", + "HEAT" + ], + "consumerGroup": "policy-group", + "environmentName": "TEST", + "keyStorePath": null, + "keyStorePassword": null, + "activeServerTlsAuth": null, + "isFilterInEmptyResources": null, + "isUseHttpsWithDmaap": null +} + |