Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCoreBPMN / src / main / java / org / onap / so / bpmn / core / domain / InventoryType.java
index e56ca76..494eb2a 100644 (file)
 
 package org.onap.so.bpmn.core.domain;
 
-public enum InventoryType{
+public enum InventoryType {
 
-       cloud("CLOUD"),
-       service("SERVICE");
+    cloud("CLOUD"), service("SERVICE");
 
-       private String type;
+    private String type;
 
-       InventoryType(String type){
-               this.type = type;
-       }
+    InventoryType(String type) {
+        this.type = type;
+    }
 
-       public String type(){
-               return type;
-       }
-}
\ No newline at end of file
+    public String type() {
+        return type;
+    }
+}