Convert tabs to spaces basic refactoring
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / adapter / ClosedLoopPolicyConditions.java
index 5b38389..012c146 100644 (file)
@@ -22,18 +22,18 @@ package org.onap.policy.rest.adapter;
 
 
 public enum ClosedLoopPolicyConditions {
-       SEND("DCAE should send event notification"),
+    SEND("DCAE should send event notification"),
 
-       NOTSEND("DCAE should not send event notification");
-       private String name;
+    NOTSEND("DCAE should not send event notification");
+    private String name;
 
-       private ClosedLoopPolicyConditions(String name){
-               this.name = name;
-       }
+    private ClosedLoopPolicyConditions(String name){
+        this.name = name;
+    }
 
-       @Override
-       public String toString(){
-               return this.name;
-       }
+    @Override
+    public String toString(){
+        return this.name;
+    }
 }