[DMAAP-DR] Remove AAF/TLS phase 1
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / authz / Authorizer.java
index c932f91..48ad7bd 100644 (file)
@@ -24,8 +24,8 @@
 \r
 package org.onap.dmaap.datarouter.authz;\r
 \r
+import jakarta.servlet.http.HttpServletRequest;\r
 import java.util.Map;\r
-import javax.servlet.http.HttpServletRequest;\r
 \r
 /**\r
  * A Data Router API that requires authorization of incoming requests creates an instance of a class that implements\r
@@ -46,7 +46,7 @@ public interface Authorizer {
      * permit/deny decision for the request and (after R1) supplemental information related to the response in the form\r
      * of advice and obligations.\r
      */\r
-    public AuthorizationResponse decide(HttpServletRequest request);\r
+    AuthorizationResponse decide(HttpServletRequest request);\r
 \r
     /**\r
      * Determine if the API request carried in the <code>request</code> parameter,with additional attributes provided in\r
@@ -58,5 +58,5 @@ public interface Authorizer {
      * permit/deny decision for the request and (after R1) supplemental information related to the response\r
      * in the form of advice and obligations.\r
      */\r
-    public AuthorizationResponse decide(HttpServletRequest request, Map<String,String> additionalAttrs);\r
+    AuthorizationResponse decide(HttpServletRequest request, Map<String,String> additionalAttrs);\r
 }\r