aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeshu Kumar M <seshu.kumar.m@huawei.com>2017-09-30 09:40:46 +0000
committerGerrit Code Review <gerrit@onap.org>2017-09-30 09:40:46 +0000
commitab42f9eacc9bee02c608bf9eda6764252a83c7cd (patch)
tree3f65bc4f4caa6ed153fa2a3ad938a38f234ad2e9
parentf91498fa83161afc6fd4f7971f255f9c49a9931a (diff)
parent38f9250b5b447d03b153fbb56968f5da93ae2e81 (diff)
Merge "Commenting for empty constructor"
-rw-r--r--mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/BpmnRequest.java17
-rw-r--r--mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/CamundaBpmnRequestInput.java2
-rw-r--r--mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/CamundaInput.java2
3 files changed, 9 insertions, 12 deletions
diff --git a/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/BpmnRequest.java b/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/BpmnRequest.java
index f63e12910c..27a310fd2d 100644
--- a/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/BpmnRequest.java
+++ b/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/BpmnRequest.java
@@ -40,11 +40,7 @@ import org.openecomp.mso.apihandler.common.CommonConstants;
CommonConstants.REQUEST_DETAILS_VARIABLE})
@JsonRootName(CommonConstants.CAMUNDA_ROOT_INPUT)
public class BpmnRequest {
-
- public BpmnRequest() {
-
- }
-
+
@JsonProperty(CommonConstants.CAMUNDA_HOST)
private CamundaInput host;
@@ -89,8 +85,11 @@ public class BpmnRequest {
@JsonProperty(CommonConstants.REQUEST_DETAILS_VARIABLE)
private CamundaInput requestDetails;
-
-
+
+ public BpmnRequest() {
+ /* Empty constructor */
+
+ }
@JsonProperty(CommonConstants.CAMUNDA_HOST)
public CamundaInput getHost() {
@@ -246,9 +245,7 @@ public class BpmnRequest {
@Override
public String toString() {
- //return "CamundaRequest [requestId=" + + ", host="
- // + host + ", schema=" + schema + ", reqid=" + reqid + ", svcid="
- // + svcid + ", timeout=" + timeout + "]";
+
return "BpmnRequest";
}
diff --git a/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/CamundaBpmnRequestInput.java b/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/CamundaBpmnRequestInput.java
index 7c882bea1b..f73829688c 100644
--- a/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/CamundaBpmnRequestInput.java
+++ b/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/CamundaBpmnRequestInput.java
@@ -21,7 +21,6 @@
package org.openecomp.mso.apihandler.camundabeans;
import org.codehaus.jackson.annotate.JsonProperty;
-import org.codehaus.jackson.map.annotate.JsonRootName;
import org.openecomp.mso.apihandler.common.CommonConstants;
@@ -38,6 +37,7 @@ public class CamundaBpmnRequestInput {
public CamundaBpmnRequestInput() {
+ /* Empty constructor */
}
@JsonProperty(CommonConstants.CAMUNDA_VALUE)
diff --git a/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/CamundaInput.java b/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/CamundaInput.java
index 8a90db675c..0c69a76b14 100644
--- a/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/CamundaInput.java
+++ b/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/camundabeans/CamundaInput.java
@@ -22,7 +22,6 @@ package org.openecomp.mso.apihandler.camundabeans;
import org.codehaus.jackson.annotate.JsonProperty;
-import org.codehaus.jackson.map.annotate.JsonRootName;
import org.openecomp.mso.apihandler.common.CommonConstants;
@@ -42,6 +41,7 @@ public class CamundaInput {
public CamundaInput() {
+ /* Empty constructor */
}
@JsonProperty(CommonConstants.CAMUNDA_VALUE)