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 / CamundaInput.java
index 29e72e0..b384c4f 100644 (file)
@@ -22,55 +22,50 @@ 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 CamundaInput {
-       
-       @JsonProperty(CommonConstants.CAMUNDA_VALUE)
-       private String value;
-       
-       
-       @JsonProperty(CommonConstants.CAMUNDA_TYPE)
-       private String type = "String";
-       
-       
-       @JsonProperty(CommonConstants.CAMUNDA_VALUE)
-       public String getValue() {
-               return value;
-       }
-       
-       @JsonProperty(CommonConstants.CAMUNDA_TYPE)
-       public String getType() {
-               return type;
-       }
-
-       @JsonProperty(CommonConstants.CAMUNDA_TYPE)
-       public void setType(String type) {
-               this.type = type;
-       }
-
-       @JsonProperty(CommonConstants.CAMUNDA_VALUE)
-       public void setValue(String value) {
-               this.value = value;
-       }
-
-       @Override
-       public String toString() {
-               return "CamundaInput [value=" + value + ", type=" + type + "]";
-       }
-       
-
-       
-       
-       
+
+    @JsonProperty(CommonConstants.CAMUNDA_VALUE)
+    private String value;
+
+
+    @JsonProperty(CommonConstants.CAMUNDA_TYPE)
+    private String type = "String";
+
+
+    @JsonProperty(CommonConstants.CAMUNDA_VALUE)
+    public String getValue() {
+        return value;
+    }
+
+    @JsonProperty(CommonConstants.CAMUNDA_TYPE)
+    public String getType() {
+        return type;
+    }
+
+    @JsonProperty(CommonConstants.CAMUNDA_TYPE)
+    public void setType(String type) {
+        this.type = type;
+    }
+
+    @JsonProperty(CommonConstants.CAMUNDA_VALUE)
+    public void setValue(String value) {
+        this.value = value;
+    }
+
+    @Override
+    public String toString() {
+        return "CamundaInput [value=" + value + ", type=" + type + "]";
+    }
+
+
+
 }