X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fonap%2Fdmaap%2Fdbcapi%2Fresources%2FAAFAuthenticationFilter.java;fp=src%2Fmain%2Fjava%2Forg%2Fonap%2Fdmaap%2Fdbcapi%2Fresources%2FAAFAuthenticationFilter.java;h=1c3a504bc6356792f4702b0b8724f95d8ecf7699;hb=682f1965193e672620bc8766fec6bcb2648aa8e5;hp=c5c29fa969df07f32b7f1be15ac1670fa4b6168c;hpb=40e1e60eb8d8cc18d8542dbd7c00f69a9cc3042d;p=dmaap%2Fdbcapi.git diff --git a/src/main/java/org/onap/dmaap/dbcapi/resources/AAFAuthenticationFilter.java b/src/main/java/org/onap/dmaap/dbcapi/resources/AAFAuthenticationFilter.java index c5c29fa..1c3a504 100644 --- a/src/main/java/org/onap/dmaap/dbcapi/resources/AAFAuthenticationFilter.java +++ b/src/main/java/org/onap/dmaap/dbcapi/resources/AAFAuthenticationFilter.java @@ -42,16 +42,16 @@ public class AAFAuthenticationFilter implements Filter { private static final Logger LOGGER = Logger.getLogger(AAFAuthenticationFilter.class.getName()); static final String CADI_PROPERTIES = "cadi.properties"; - static final String AAF_AUTHN_FLAG = "UseAAF"; + static final String CADI_AUTHN_FLAG = "enableCADI"; - private boolean isAafEnabled; + private boolean isCadiEnabled; private CadiFilter cadiFilter; @Override public void init(FilterConfig filterConfig) throws ServletException { DmaapConfig dmaapConfig = getConfig(); - String flag = dmaapConfig.getProperty(AAF_AUTHN_FLAG, "false"); - isAafEnabled = "true".equalsIgnoreCase(flag); + String flag = dmaapConfig.getProperty(CADI_AUTHN_FLAG, "false"); + isCadiEnabled = "true".equalsIgnoreCase(flag); initCadi(dmaapConfig); } @@ -60,7 +60,7 @@ public class AAFAuthenticationFilter implements Filter { public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException { - if(isAafEnabled) { + if(isCadiEnabled) { cadiFilter.doFilter(servletRequest, servletResponse, filterChain); updateResponseBody((HttpServletResponse)servletResponse); } else { @@ -96,7 +96,7 @@ public class AAFAuthenticationFilter implements Filter { } private void initCadi(DmaapConfig dmaapConfig) throws ServletException { - if(isAafEnabled) { + if(isCadiEnabled) { try { String cadiPropertiesFile = dmaapConfig.getProperty(CADI_PROPERTIES); if(cadiPropertiesFile != null && !cadiPropertiesFile.isEmpty()) { @@ -136,7 +136,7 @@ public class AAFAuthenticationFilter implements Filter { this.cadiFilter = cadiFilter; } - boolean isAafEnabled() { - return isAafEnabled; + boolean isCadiEnabled() { + return isCadiEnabled; } }