summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-os/src/main/webapp/WEB-INF/web.xml
diff options
context:
space:
mode:
authorKotta, Shireesha (sk434m) <sk434m@att.com>2018-12-28 10:44:43 -0500
committerKotta, Shireesha (sk434m) <sk434m@att.com>2018-12-28 10:44:43 -0500
commit33e660e21a7cce89210a318c4de80d1f8b4d5f5d (patch)
tree565b2b745c8878b9dcda45afef6efa05dd79b05b /ecomp-sdk/epsdk-app-os/src/main/webapp/WEB-INF/web.xml
parent4686d8a9ec9367e7dc75770cb69c60d5c592e63a (diff)
CADI Integration POM change
Issue-ID: PORTAL-474 Changed POM version to 2.5.0 Change-Id: Ibd72c1c4977f63b5123f76ff6bbb36f2e74172ab Signed-off-by: Kotta, Shireesha (sk434m) <sk434m@att.com>
Diffstat (limited to 'ecomp-sdk/epsdk-app-os/src/main/webapp/WEB-INF/web.xml')
-rw-r--r--ecomp-sdk/epsdk-app-os/src/main/webapp/WEB-INF/web.xml25
1 files changed, 24 insertions, 1 deletions
diff --git a/ecomp-sdk/epsdk-app-os/src/main/webapp/WEB-INF/web.xml b/ecomp-sdk/epsdk-app-os/src/main/webapp/WEB-INF/web.xml
index a87e478d..56a6edba 100644
--- a/ecomp-sdk/epsdk-app-os/src/main/webapp/WEB-INF/web.xml
+++ b/ecomp-sdk/epsdk-app-os/src/main/webapp/WEB-INF/web.xml
@@ -56,5 +56,28 @@
<error-page>
<location>/WEB-INF/jsp/error.jsp</location>
</error-page>
-
+ <filter>
+ <filter-name>CadiAuthFilter</filter-name>
+ <filter-class>org.onap.portalsdk.core.onboarding.crossapi.CadiAuthFilter</filter-class>
+ <init-param>
+ <param-name>cadi_prop_files</param-name>
+ <!-- Add Absolute path of cadi.properties -->
+ <param-value>{path}/cadi.properties
+ </param-value>
+ </init-param>
+ <!--Add param values with comma delimited values -->
+ <!-- for example /api/v3/*,/auxapi/*-->
+ <init-param>
+ <param-name>include_url_endpoints</param-name>
+ <param-value>/api/v3/*</param-value>
+ </init-param>
+ <init-param>
+ <param-name>exclude_url_endpoints</param-name>
+ <param-value>/api/v3/analytics,/api/v3/storeAnalytics</param-value>
+ </init-param>
+ </filter>
+ <filter-mapping>
+ <filter-name>CadiAuthFilter</filter-name>
+ <url-pattern>/*</url-pattern>
+ </filter-mapping>
</web-app>