Code style cleanup for prov authz and beans
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / authz / AuthorizationResponse.java
index e6e8802..5e21f22 100644 (file)
  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
  * *\r
  ******************************************************************************/\r
+\r
 package org.onap.dmaap.datarouter.authz;\r
 \r
 import java.util.List;\r
 \r
 /**\r
  * The <code>AuthorizationResponse</code> interface gives the caller access to information about an authorization\r
- * decision.  This information includes the permit/deny decision itself, along with supplementary information in the form of\r
- * advice and obligations.  (The advice and obligations will not be used in Data Router R1.)\r
+ * decision.  This information includes the permit/deny decision itself,\r
+ * along with supplementary information in the form of advice and obligations.\r
+ * (The advice and obligations will not be used in Data Router R1.)\r
  *\r
  * @author J. F. Lucas\r
  *\r
  */\r
 public interface AuthorizationResponse {\r
+\r
     /**\r
      * Indicates whether the request is authorized or not.\r
      *\r
@@ -43,16 +46,16 @@ public interface AuthorizationResponse {
     /**\r
      * Returns any advice elements that were included in the authorization response.\r
      *\r
-     * @return A list of objects implementing the <code>AuthorizationResponseSupplement</code> interface, with each object representing an\r
-     * advice element from the authorization response.\r
+     * @return A list of objects implementing the <code>AuthorizationResponseSupplement</code> interface,\r
+     * each representing an advice element from the authorization response.\r
      */\r
     public List<AuthorizationResponseSupplement> getAdvice();\r
 \r
     /**\r
      * Returns any obligation elements that were included in the authorization response.\r
      *\r
-     * @return A list of objects implementing the <code>AuthorizationResponseSupplement</code> interface, with each object representing an\r
-     * obligation element from the authorization response.\r
+     * @return A list of objects implementing the <code>AuthorizationResponseSupplement</code> interface,\r
+     * each representing an obligation element from the authorization response.\r
      */\r
     public List<AuthorizationResponseSupplement> getObligations();\r
 }\r