Sonar Fixes, Formatting
[aaf/authz.git] / cadi / client / src / main / java / org / onap / aaf / cadi / http / HRcli.java
index cbd7b33..70ca490 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -36,9 +36,9 @@ import org.onap.aaf.misc.env.Data.TYPE;
 
 /**
  * Rosetta Client
- * 
+ *
  * JAXB defined JSON or XML over HTTP/S
- * 
+ *
  * @author Jonathan
  *
  * @param <T>
@@ -74,10 +74,10 @@ public class HRcli extends Rcli<HttpURLConnection> {
 
 
     /**
-     * 
+     *
      * @return
-     * @throws APIException 
-     * @throws DME2Exception 
+     * @throws APIException
+     * @throws DME2Exception
      */
     protected EClient<HttpURLConnection> client() throws CadiException {
         try {
@@ -93,7 +93,7 @@ public class HRcli extends Rcli<HttpURLConnection> {
             throw new CadiException(e);
         }
     }
-    
+
     /* (non-Javadoc)
      * @see org.onap.aaf.cadi.client.Rcli#setSecuritySetter(org.onap.aaf.cadi.SecuritySetter)
      */
@@ -117,7 +117,7 @@ public class HRcli extends Rcli<HttpURLConnection> {
             throw new CadiException(e);
         }
     }
-    
+
     public HRcli setManager(HMangr hman) {
         this.hman = hman;
         return this;
@@ -126,5 +126,5 @@ public class HRcli extends Rcli<HttpURLConnection> {
     public String toString() {
         return uri.toString();
     }
-    
+
 }