Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / RestProperties.java
index 7043e89..9e4e99c 100644 (file)
@@ -25,15 +25,19 @@ import java.net.URL;
 
 public interface RestProperties {
 
-       public URL getEndpoint() throws MalformedURLException;
-       public String getSystemName();
-       public default Integer getRetries() {
-               return Integer.valueOf(2);
-       }
-       public default Long getDelayBetweenRetries() {
-               return Long.valueOf(500);
-       }
-       public default boolean mapNotFoundToEmpty() {
-               return false;
-       }
+    public URL getEndpoint() throws MalformedURLException;
+
+    public String getSystemName();
+
+    public default Integer getRetries() {
+        return Integer.valueOf(2);
+    }
+
+    public default Long getDelayBetweenRetries() {
+        return Long.valueOf(500);
+    }
+
+    public default boolean mapNotFoundToEmpty() {
+        return false;
+    }
 }