Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-api-handlers / mso-requests-db / src / main / java / org / onap / so / db / request / beans / Status.java
index f6ee508..0ff894e 100644 (file)
@@ -23,11 +23,11 @@ package org.onap.so.db.request.beans;
 
 /*
  * Enum for Status values returned by API Handler to Tail-F
-*/
+ */
 public enum Status {
-                    PENDING, INPROGRESS, COMPLETED, FAILED, TIMEOUT;
+    PENDING, INPROGRESS, COMPLETED, FAILED, TIMEOUT;
 
-    public boolean isFinished () {
+    public boolean isFinished() {
         switch (this) {
             case COMPLETED:
             case FAILED:
@@ -37,4 +37,4 @@ public enum Status {
                 return false;
         }
     }
-}
\ No newline at end of file
+}