aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuli Shlosberg <ys9693@att.com>2017-12-31 16:57:31 +0200
committerYuli Shlosberg <ys9693@att.com>2017-12-31 16:57:31 +0200
commit6ef26b47123f055e053102239ed227a29780f0b4 (patch)
tree4291c8bed99e355f5f32b5b23fed053c1608e55a
parent7712aebd58699838b4926c577b46536de1e25baa (diff)
Update code after grep filters execution
Change-Id: I12fdf2c07e5d3ff0b2e94322dea30bb2bcd1061a Issue-ID: SDC-733 Signed-off-by: Yuli Shlosberg <ys9693@att.com>
-rw-r--r--README.md14
-rw-r--r--pom.xml15
2 files changed, 12 insertions, 17 deletions
diff --git a/README.md b/README.md
index 51f93e3..38c70ec 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# OpenECOMP SDC Distribution client
+# ONAP SDC Distribution client
---
@@ -6,17 +6,17 @@
# Introduction
-OpenECOMP SDC Distribution client is delivered as helper JAR that can be used by clients that work with SDC.
+ONAP SDC Distribution client is delivered as helper JAR that can be used by clients that work with SDC.
It register to SDC for getting notifications, listen for notification from SDC, download artifacts from SDC, and send respone back to SDC.
-# Compiling OpenECOMP SDC Distribution client
+# Compiling ONAP SDC Distribution client
-OpenECOMP SDC Distribution client can be compiled easily using maven command: `mvn clean install`
+ONAP SDC Distribution client can be compiled easily using maven command: `mvn clean install`
The result is JAR file under "target" folder
-### How to use OpenECOMP SDC Distribution client
+### How to use ONAP SDC Distribution client
Every client that wants to use the JAR, need to implement IConfiguration interface.
Configuration parameters:
@@ -27,9 +27,9 @@ 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 ECOMP component, if no consumer group is defined return null.
+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 ECOMP component instance (e.x INSTAR name).
+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.
diff --git a/pom.xml b/pom.xml
index 1214b7e..a0fd6b9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -153,17 +153,12 @@
<url>http://repo2.maven.org/maven2/</url>
</repository>
<repository>
- <id>ecomp-releases</id>
+ <id>onap-releases</id>
<name>Release Repository</name>
<url>${nexus.proxy}/content/repositories/releases/</url>
</repository>
<repository>
- <id>ecomp-staging</id>
- <name>Staging Repository</name>
- <url>${nexus.proxy}/content/repositories/staging/</url>
- </repository>
- <repository>
- <id>ecomp-snapshots</id>
+ <id>onap-snapshots</id>
<name>Snapshots Repository</name>
<url>${nexus.proxy}/content/repositories/snapshots/</url>
</repository>
@@ -171,17 +166,17 @@
<distributionManagement>
<repository>
- <id>ecomp-releases</id>
+ <id>onap-releases</id>
<name>Release Repository</name>
<url>${nexus.proxy}/content/repositories/${releases.path}/</url>
</repository>
<snapshotRepository>
- <id>ecomp-snapshots</id>
+ <id>onap-snapshots</id>
<name>Snapshot Repository</name>
<url>${nexus.proxy}/content/repositories/${snapshots.path}/</url>
</snapshotRepository>
<site>
- <id>ecomp-site</id>
+ <id>onap-site</id>
<url>dav:${nexus.proxy}${sitePath}</url>
</site>
</distributionManagement>