Initial drop of rProxy code 81/68081/8
authorLee, Tian (tl5884) <TianL@amdocs.com>
Thu, 20 Sep 2018 11:27:40 +0000 (12:27 +0100)
committerTian Lee <TianL@amdocs.com>
Mon, 24 Sep 2018 09:25:29 +0000 (09:25 +0000)
commit0d7feec2e32f69a8e919f06f03df3ce46e78801d
treed712e56fb78bea085eb1bf9c04447a07d0f50341
parent6c3031ea90d5b51ae44a599c0cd0d95c057cf633
Initial drop of rProxy code

The Reverse Proxy sidecar is used to separate the responsibility of
authentication and authorization away from the primary microservice. In
conjunction with the Forward Proxy sidecar, it is responsible for
controlling access to the REST URL endpoints exposed by the primary
microservice, and propogating security credentials to downstream
microservices.

Change-Id: I5d80429e5422d7b3937cde73ac10c2ec00d264e8
Issue-ID: AAI-1604
Signed-off-by: Lee, Tian (tl5884) <TianL@amdocs.com>
37 files changed:
sidecar/rproxy/License.txt [new file with mode: 0644]
sidecar/rproxy/README.md [new file with mode: 0644]
sidecar/rproxy/config/auth/client-cert.p12 [new file with mode: 0644]
sidecar/rproxy/config/auth/tomcat_keystore [new file with mode: 0644]
sidecar/rproxy/config/auth/uri-authorization.json [new file with mode: 0644]
sidecar/rproxy/config/cadi.properties [new file with mode: 0644]
sidecar/rproxy/config/forward-proxy.properties [new file with mode: 0644]
sidecar/rproxy/config/logback-spring.xml [new file with mode: 0644]
sidecar/rproxy/config/primary-service.properties [new file with mode: 0644]
sidecar/rproxy/config/readme.txt [new file with mode: 0644]
sidecar/rproxy/config/reverse-proxy.properties [new file with mode: 0644]
sidecar/rproxy/config/security/keyfile [new file with mode: 0644]
sidecar/rproxy/pom.xml [new file with mode: 0644]
sidecar/rproxy/src/main/bin/start.sh [new file with mode: 0644]
sidecar/rproxy/src/main/docker/Dockerfile [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/ReverseProxyApplication.java [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/ReverseProxyAuthorizationFilter.java [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/ReverseProxyService.java [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/config/CadiProperties.java [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/config/ForwardProxyProperties.java [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/config/PrimaryServiceProperties.java [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/config/ReverseProxySSLProperties.java [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/config/ReverseProxyURIAuthorizationProperties.java [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/logging/ReverseProxyEntryExitLoggingAspect.java [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/logging/ReverseProxyMethodLogTime.java [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/logging/ReverseProxyMethodLogTimeAnnotation.java [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/mocks/ReverseProxyMockCadiFilter.java [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/utils/ReverseProxyAuthorization.java [new file with mode: 0644]
sidecar/rproxy/src/main/java/org/onap/aaf/rproxy/utils/ReverseProxyUtils.java [new file with mode: 0644]
sidecar/rproxy/src/main/resources/application.properties [new file with mode: 0644]
sidecar/rproxy/src/test/java/org/onap/aaf/rproxy/PermissionMatchingTest.java [new file with mode: 0644]
sidecar/rproxy/src/test/java/org/onap/aaf/rproxy/ReverseProxyApplicationTest.java [new file with mode: 0644]
sidecar/rproxy/src/test/java/org/onap/aaf/rproxy/ReverseProxyIT.java [new file with mode: 0644]
sidecar/rproxy/src/test/java/org/onap/aaf/rproxy/ReverseProxyTestConfig.java [new file with mode: 0644]
sidecar/rproxy/src/test/resources/forward-proxy.properties [new file with mode: 0644]
sidecar/rproxy/src/test/resources/primary-service.properties [new file with mode: 0644]
sidecar/rproxy/version.properties [new file with mode: 0644]