diff options
author | Michal Banka <michal.banka@nokia.com> | 2020-12-02 10:41:26 +0100 |
---|---|---|
committer | Micha? Ba?ka <michal.banka@nokia.com> | 2020-12-03 10:26:42 +0000 |
commit | da39a4cd6d73278a8be6e48602f2acb5af1dc1c3 (patch) | |
tree | 35af112a1c722a9118f4bd5b5a14c5d6b867103c /README.md | |
parent | f9ff1605045ad31e52fffac2da25f7195d5c7455 (diff) |
Improve code quality
- Extracted NotificationSender class from DistributionClientImpl
- Fixed list formatting in README
- Other small refactors
- +2% code coverage
Change-Id: I753502d13504057804fcb3557c808dae2520cc74
Signed-off-by: Michal Banka <michal.banka@nokia.com>
Issue-ID: SDC-3388
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -23,18 +23,18 @@ Every client that wants to use the JAR, need to implement IConfiguration interfa Configuration parameters: -------------------------- -AsdcAddress : ASDC Distribution Engine address. Value can be either hostname (with or without port), IP:port or FQDN (Fully Qualified Domain Name). -User : User Name for ASDC distribution consumer authentication. -Password : User Password for ASDC distribution consumer authentication. -PollingInterval : Distribution Client Polling Interval towards UEB in seconds. Can Be reconfigured in runtime. -PollingTimeout : Distribution Client Timeout in seconds waiting to UEB server response in each fetch interval. Can Be reconfigured in runtime. -RelevantArtifactTypes : List of artifact types. If the service contains any of the artifacts in the list, the callback will be activated. Can Be reconfigured in runtime. -ConsumerGroup : Returns the consumer group defined for this ONAP component, if no consumer group is defined return null. -EnvironmentName : Returns the environment name (testing, production etc... Can Be reconfigured in runtime. -ConsumerID : Unique ID of ONAP component instance (e.x INSTAR name). -KeyStorePath : Return full path to Client's Key Store that contains either CA certificate or the ASDC's public key (e.g /etc/keystore/asdc-client.jks). file will be deployed with asdc-distribution jar -KeyStorePassword : Return client's Key Store password. -activateServerTLSAuth : Sets whether ASDC server TLS authentication is activated. If set to false, Key Store path and password are not needed to be set. +- AsdcAddress : ASDC Distribution Engine address. Value can be either hostname (with or without port), IP:port or FQDN (Fully Qualified Domain Name). +- User : User Name for ASDC distribution consumer authentication. +- Password : User Password for ASDC distribution consumer authentication. +- PollingInterval : Distribution Client Polling Interval towards UEB in seconds. Can Be reconfigured in runtime. +- PollingTimeout : Distribution Client Timeout in seconds waiting to UEB server response in each fetch interval. Can Be reconfigured in runtime. +- RelevantArtifactTypes : List of artifact types. If the service contains any of the artifacts in the list, the callback will be activated. Can Be reconfigured in runtime. +- ConsumerGroup : Returns the consumer group defined for this ONAP component, if no consumer group is defined return null. +- EnvironmentName : Returns the environment name (testing, production etc... Can Be reconfigured in runtime. +- ConsumerID : Unique ID of ONAP component instance (e.x INSTAR name). +- KeyStorePath : Return full path to Client's Key Store that contains either CA certificate or the ASDC's public key (e.g /etc/keystore/asdc-client.jks). file will be deployed with asdc-distribution jar +- KeyStorePassword : Return client's Key Store password. +- activateServerTLSAuth : Sets whether ASDC server TLS authentication is activated. If set to false, Key Store path and password are not needed to be set. Example of configuration file implementing IConfiguration interface: -------------------------------------------------------------------- |