Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-api-handlers / mso-api-handler-common / src / main / java / org / onap / so / apihandler / camundabeans / CamundaBpmnRequestInput.java
index 25293c7..33eea68 100644 (file)
@@ -23,12 +23,10 @@ package org.onap.so.apihandler.camundabeans;
 
 
 import org.onap.so.apihandler.common.CommonConstants;
-
 import com.fasterxml.jackson.annotation.JsonProperty;
 
 /**
- * JavaBean JSON class for a "gMyServiceInput" which contains the xml payload that
- * will be passed to the Camunda process
+ * JavaBean JSON class for a "gMyServiceInput" which contains the xml payload that will be passed to the Camunda process
  */
 public class CamundaBpmnRequestInput {
 
@@ -54,15 +52,15 @@ public class CamundaBpmnRequestInput {
 
     @JsonProperty(CommonConstants.CAMUNDA_TYPE)
     public String getType() {
-               return type;
-       }
+        return type;
+    }
 
     @JsonProperty(CommonConstants.CAMUNDA_TYPE)
-       public void setType(String type) {
-               this.type = type;
-       }
+    public void setType(String type) {
+        this.type = type;
+    }
 
-       @Override
+    @Override
     public String toString() {
         return "CamundaInput [value=" + value + ", type=" + type + "]";
     }