From aecbc1cba6e862c3d842012ce54d121764f78cb0 Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Fri, 14 Jun 2019 10:58:51 -0400 Subject: Change getCanonicalName() to getName() in common Per javadocs, getName() should generally be used instead of Class.getCanonicalName(). This change only applies to classes; it does not apply to File objects. Change-Id: Iea0995d1167f4837607f194d35f0193eeedeacd7 Issue-ID: POLICY-1646 Signed-off-by: Jim Hahn --- .../common/endpoints/http/server/internal/JettyServletServer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'policy-endpoints/src/main/java/org/onap/policy/common/endpoints') diff --git a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyServletServer.java b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyServletServer.java index 58c2ada7..45ccb06a 100644 --- a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyServletServer.java +++ b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyServletServer.java @@ -238,13 +238,13 @@ public abstract class JettyServletServer implements HttpServletServer, Runnable @Override public void setAafAuthentication(String filterPath) { - this.addFilterClass(filterPath, CadiFilter.class.getCanonicalName()); + this.addFilterClass(filterPath, CadiFilter.class.getName()); } @Override public boolean isAaf() { for (FilterHolder filter : context.getServletHandler().getFilters()) { - if (CadiFilter.class.getCanonicalName().equals(filter.getClassName())) { + if (CadiFilter.class.getName().equals(filter.getClassName())) { return true; } } -- cgit 1.2.3-korg