Add forward proxy code 81/66981/8
authorRavi Geda <gravik@amdocs.com>
Mon, 17 Sep 2018 11:57:44 +0000 (12:57 +0100)
committerRavi Geda <gravik@amdocs.com>
Thu, 20 Sep 2018 11:44:40 +0000 (12:44 +0100)
commit6c3031ea90d5b51ae44a599c0cd0d95c057cf633
tree430df4d43b04db902d21a80e19e465fa3312951b
parent85f33095c117ba5b361749746d564e6308a33f14
Add forward proxy code

Add a maven module called sidecar to cadi.
Add forward proxy as a maven module to sidecar.
Note that though sidecar is a module of cadi it does not inherit from cadi's pom.

Change-Id: I617ecb1a66a3cbdd3f03287f28c6527693c6dfc6
Issue-ID: AAI-1603
Signed-off-by: Ravi Geda <gravik@amdocs.com>
25 files changed:
pom.xml
sidecar/fproxy/License.txt [new file with mode: 0644]
sidecar/fproxy/README.md [new file with mode: 0644]
sidecar/fproxy/config/auth/client-cert.p12 [new file with mode: 0644]
sidecar/fproxy/config/auth/tomcat_keystore [new file with mode: 0644]
sidecar/fproxy/config/fproxy.properties [new file with mode: 0644]
sidecar/fproxy/config/logback-spring.xml [new file with mode: 0644]
sidecar/fproxy/config/readme.txt [new file with mode: 0644]
sidecar/fproxy/pom.xml [new file with mode: 0644]
sidecar/fproxy/src/main/bin/start.sh [new file with mode: 0644]
sidecar/fproxy/src/main/docker/Dockerfile [new file with mode: 0644]
sidecar/fproxy/src/main/java/org/onap/aaf/fproxy/CredentialCacheConfig.java [new file with mode: 0644]
sidecar/fproxy/src/main/java/org/onap/aaf/fproxy/FProxyApplication.java [new file with mode: 0644]
sidecar/fproxy/src/main/java/org/onap/aaf/fproxy/RestTemplateConfig.java [new file with mode: 0644]
sidecar/fproxy/src/main/java/org/onap/aaf/fproxy/cache/CredentialCache.java [new file with mode: 0644]
sidecar/fproxy/src/main/java/org/onap/aaf/fproxy/cache/InMemoryCredentialCache.java [new file with mode: 0644]
sidecar/fproxy/src/main/java/org/onap/aaf/fproxy/cache/utils/CacheUtils.java [new file with mode: 0644]
sidecar/fproxy/src/main/java/org/onap/aaf/fproxy/data/CredentialCacheData.java [new file with mode: 0644]
sidecar/fproxy/src/main/java/org/onap/aaf/fproxy/service/ForwardingProxyService.java [new file with mode: 0644]
sidecar/fproxy/src/main/java/org/onap/aaf/fproxy/util/RequestValidationException.java [new file with mode: 0644]
sidecar/fproxy/src/main/resources/application.properties [new file with mode: 0644]
sidecar/fproxy/src/test/java/org/onap/aaf/fproxy/FProxyIT.java [new file with mode: 0644]
sidecar/fproxy/src/test/java/org/onap/aaf/fproxy/FProxyServiceTest.java [new file with mode: 0644]
sidecar/fproxy/version.properties [new file with mode: 0644]
sidecar/pom.xml [new file with mode: 0644]