Sonar Fixes, Formatting
[aaf/authz.git] / cadi / client / src / main / java / org / onap / aaf / cadi / http / HRcli.java
index f289b0e..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,95 +36,95 @@ import org.onap.aaf.misc.env.Data.TYPE;
 
 /**
  * Rosetta Client
- * 
+ *
  * JAXB defined JSON or XML over HTTP/S
- * 
+ *
  * @author Jonathan
  *
  * @param <T>
  */
 public class HRcli extends Rcli<HttpURLConnection> {
-       private HMangr hman;
-       private Item item;
-       private SecuritySetter<HttpURLConnection> ss;
-
-       public HRcli(HMangr hman, Item locItem, SecuritySetter<HttpURLConnection> secSet) throws URISyntaxException, LocatorException {
-               item=locItem;
-               uri=hman.loc.get(locItem);
-               this.hman = hman;
-               ss=secSet;
-               type = TYPE.JSON;
-               apiVersion = hman.apiVersion();
-       }
-
-       public HRcli(HMangr hman, URI uri, Item locItem, SecuritySetter<HttpURLConnection> secSet) {
-               locItem=item;
-               this.uri = uri;
-               this.hman = hman;
-               ss=secSet;
-               type = TYPE.JSON;
-               apiVersion = hman.apiVersion();
-       }
-
-       @Override
-       protected HRcli clone(URI uri, SecuritySetter<HttpURLConnection> ss) {
-               return new HRcli(hman,uri,item,ss);
-       }
-
-
-
-       /**
-        * 
-        * @return
-        * @throws APIException 
-        * @throws DME2Exception 
-        */
-       protected EClient<HttpURLConnection> client() throws CadiException {
-               try {
-                       if(uri==null) {
-                               Item item = hman.loc.best();
-                               if(item==null) {
-                                       throw new CadiException("No service available for " + hman.loc.toString());
-                               }
-                               uri = hman.loc.get(item);
-                       }
-                       return new HClient(ss,uri,connectionTimeout);
-               } catch (Exception e) {
-                       throw new CadiException(e);
-               }
-       }
-       
-       /* (non-Javadoc)
-        * @see org.onap.aaf.cadi.client.Rcli#setSecuritySetter(org.onap.aaf.cadi.SecuritySetter)
-        */
-       @Override
-       public void setSecuritySetter(SecuritySetter<HttpURLConnection> ss) {
-               this.ss = ss;
-       }
-
-       /* (non-Javadoc)
-        * @see org.onap.aaf.cadi.client.Rcli#getSecuritySetter()
-        */
-       @Override
-       public SecuritySetter<HttpURLConnection> getSecuritySetter() {
-               return ss;
-       }
-
-       public void invalidate() throws CadiException {
-               try {
-                       hman.loc.invalidate(item);
-               } catch (Exception e) {
-                       throw new CadiException(e);
-               }
-       }
-       
-       public HRcli setManager(HMangr hman) {
-               this.hman = hman;
-               return this;
-       }
-
-       public String toString() {
-               return uri.toString();
-       }
-       
+    private HMangr hman;
+    private Item item;
+    private SecuritySetter<HttpURLConnection> ss;
+
+    public HRcli(HMangr hman, Item locItem, SecuritySetter<HttpURLConnection> secSet) throws URISyntaxException, LocatorException {
+        item=locItem;
+        uri=hman.loc.get(locItem);
+        this.hman = hman;
+        ss=secSet;
+        type = TYPE.JSON;
+        apiVersion = hman.apiVersion();
+    }
+
+    public HRcli(HMangr hman, URI uri, Item locItem, SecuritySetter<HttpURLConnection> secSet) {
+        item=locItem;
+        this.uri = uri;
+        this.hman = hman;
+        ss=secSet;
+        type = TYPE.JSON;
+        apiVersion = hman.apiVersion();
+    }
+
+    @Override
+    protected HRcli clone(URI uri, SecuritySetter<HttpURLConnection> ss) {
+        return new HRcli(hman,uri,item,ss);
+    }
+
+
+
+    /**
+     *
+     * @return
+     * @throws APIException
+     * @throws DME2Exception
+     */
+    protected EClient<HttpURLConnection> client() throws CadiException {
+        try {
+            if (uri==null) {
+                Item item = hman.loc.best();
+                if (item==null) {
+                    throw new CadiException("No service available for " + hman.loc.toString());
+                }
+                uri = hman.loc.get(item);
+            }
+            return new HClient(ss,uri,connectionTimeout);
+        } catch (Exception e) {
+            throw new CadiException(e);
+        }
+    }
+
+    /* (non-Javadoc)
+     * @see org.onap.aaf.cadi.client.Rcli#setSecuritySetter(org.onap.aaf.cadi.SecuritySetter)
+     */
+    @Override
+    public void setSecuritySetter(SecuritySetter<HttpURLConnection> ss) {
+        this.ss = ss;
+    }
+
+    /* (non-Javadoc)
+     * @see org.onap.aaf.cadi.client.Rcli#getSecuritySetter()
+     */
+    @Override
+    public SecuritySetter<HttpURLConnection> getSecuritySetter() {
+        return ss;
+    }
+
+    public void invalidate() throws CadiException {
+        try {
+            hman.loc.invalidate(item);
+        } catch (Exception e) {
+            throw new CadiException(e);
+        }
+    }
+
+    public HRcli setManager(HMangr hman) {
+        this.hman = hman;
+        return this;
+    }
+
+    public String toString() {
+        return uri.toString();
+    }
+
 }