Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / graphinventory / entities / uri / Depth.java
index 1205511..d91f36c 100644 (file)
 package org.onap.so.client.graphinventory.entities.uri;
 
 public enum Depth {
-       ZERO("0"),
-       ONE("1"),
-       TWO("2"),
-       THREE("3"),
-       FOUR("4"),
-       FIVE("5"),
-       SIX("6"),
-       ALL("all");
-       
-       private final String depth;
-       private Depth(String s) {
-               
-               this.depth = s;
-       }
-       
-       
-       @Override
-       public String toString() {
-               return this.depth;
-       }
+    ZERO("0"), ONE("1"), TWO("2"), THREE("3"), FOUR("4"), FIVE("5"), SIX("6"), ALL("all");
+
+    private final String depth;
+
+    private Depth(String s) {
+
+        this.depth = s;
+    }
+
+
+    @Override
+    public String toString() {
+        return this.depth;
+    }
 }