Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / client / src / main / java / org / onap / aaf / cadi / http / HRcli.java
index 908b895..674936d 100644 (file)
@@ -44,87 +44,87 @@ import org.onap.aaf.misc.env.Data.TYPE;
  * @param <T>
  */
 public class HRcli extends Rcli<HttpURLConnection> {
-       private HMangr hman;
-       private Item item;
-       private SecuritySetter<HttpURLConnection> ss;
+    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, 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();
-       }
+    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);
-       }
+    @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;
-       }
+    /**
+     * 
+     * @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;
-       }
+    /* (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 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();
-       }
-       
+    public String toString() {
+        return uri.toString();
+    }
+    
 }