Code style cleanup for prov authz and beans
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / authz / Authorizer.java
index 44719e6..c932f91 100644 (file)
@@ -7,9 +7,9 @@
  * * Licensed under the Apache License, Version 2.0 (the "License");\r
  * * you may not use this file except in compliance with the License.\r
  * * You may obtain a copy of the License at\r
- * * \r
+ * *\r
  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
- * * \r
+ * *\r
  *  * Unless required by applicable law or agreed to in writing, software\r
  * * distributed under the License is distributed on an "AS IS" BASIS,\r
  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
@@ -31,32 +31,32 @@ import javax.servlet.http.HttpServletRequest;
  * A Data Router API that requires authorization of incoming requests creates an instance of a class that implements\r
  * the <code>Authorizer</code> interface.   The class implements all of the logic necessary to determine if an API\r
  * request is permitted.  In Data Router R1, the classes that implement the <code>Authorizer</code> interface will have\r
- * local logic that makes the authorization decision.  After R1, these classes will instead have logic that creates XACML\r
+ * local logic that makes the authorization decision.  After R1,these classes will instead have logic that creates XACML\r
  * authorization requests, sends these requests to a Policy Decision Point (PDP), and parses the XACML responses.\r
- * \r
+ *\r
  * @author J. F. Lucas\r
  *\r
  */\r
 public interface Authorizer {\r
-       /**\r
-        * Determine if the API request carried in the <code>request</code> parameter is permitted.\r
-        * \r
-        * @param request the HTTP request for which an authorization decision is needed\r
-        * @return an object implementing the <code>AuthorizationResponse</code> interface.  This object includes the\r
-        * 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
-       \r
-       /**\r
-        * Determine if the API request carried in the <code>request</code> parameter, with additional attributes provided in\r
-        * the <code>additionalAttrs</code> parameter, is permitted.\r
-        * \r
-        * @param request the HTTP request for which an authorization decision is needed\r
-        * @param additionalAttrs additional attributes that the <code>Authorizer</code> can in making an authorization decision\r
-        * @return an object implementing the <code>AuthorizationResponse</code> interface.  This object includes the\r
-        * 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, Map<String,String> additionalAttrs);\r
+    /**\r
+     * Determine if the API request carried in the <code>request</code> parameter is permitted.\r
+     *\r
+     * @param request the HTTP request for which an authorization decision is needed\r
+     * @return an object implementing the <code>AuthorizationResponse</code> interface.  This object includes the\r
+     * 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
+\r
+    /**\r
+     * Determine if the API request carried in the <code>request</code> parameter,with additional attributes provided in\r
+     * the <code>additionalAttrs</code> parameter, is permitted.\r
+     *\r
+     * @param request the HTTP request for which an authorization decision is needed\r
+     * @param additionalAttrs additional attributes that the <code>Authorizer</code> can in making a decision\r
+     * @return an object implementing the <code>AuthorizationResponse</code> interface.  This object includes the\r
+     * 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
 }\r