aboutsummaryrefslogtreecommitdiffstats
path: root/ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/deploymenthandler/DeploymentRequestObject.java
diff options
context:
space:
mode:
Diffstat (limited to 'ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/deploymenthandler/DeploymentRequestObject.java')
-rw-r--r--ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/deploymenthandler/DeploymentRequestObject.java78
1 files changed, 78 insertions, 0 deletions
diff --git a/ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/deploymenthandler/DeploymentRequestObject.java b/ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/deploymenthandler/DeploymentRequestObject.java
new file mode 100644
index 0000000..a0606c7
--- /dev/null
+++ b/ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/deploymenthandler/DeploymentRequestObject.java
@@ -0,0 +1,78 @@
+package org.onap.ccsdk.dashboard.model.deploymenthandler;
+
+import java.util.Map;
+
+import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/**
+ * Model for message POST-ed to controller to create a Deployment via the Deployment Handler API:
+ *
+ * <pre>
+ {
+ "serviceTypeId" : "serviceTypeId",
+ "type" : "install/update",
+ "inputs" :
+ {
+ "input1" : "parameter1"
+ "input2" : "parameter2"
+ ...
+ "inputn" : "parametern"
+ }
+ }
+ * </pre>
+ *
+ * THIS OBJECT INCLUDES THE DEPLOYMENTID CREATED BY THE USER!
+ */
+public class DeploymentRequestObject {
+
+ /** Unique deployment identifier assigned by the API client. */
+ private final String deploymentId;
+
+ /** type of deployment request */
+ private final String method;
+
+ /** The service type identifier (a unique ID assigned by DCAE inventory) for the service to be deployed. */
+ private final String serviceTypeId;
+
+ /** The cloudify tenant name for the deployment */
+ private final String tenant;
+ /**
+ * Object containing inputs needed by the service blueprint to create an instance of the service.
+ * Content of the object depends on the service being deployed.
+ */
+ private final Map<String, Object> inputs;
+
+ @JsonCreator
+ public DeploymentRequestObject(@JsonProperty("deploymentId") String deploymentId,
+ @JsonProperty("serviceTypeId") String serviceTypeId,
+ @JsonProperty("inputs") Map<String, Object> inputs,
+ @JsonProperty("tenant") String tenant,
+ @JsonProperty("method") String method) {
+ this.deploymentId = deploymentId;
+ this.serviceTypeId = serviceTypeId;
+ this.inputs = inputs;
+ this.tenant = tenant;
+ this.method = method;
+ }
+
+ public String getDeploymentId() {
+ return this.deploymentId;
+ }
+
+ public String getServiceTypeId() {
+ return this.serviceTypeId;
+ }
+
+ public Map<String, Object> getInputs() {
+ return this.inputs;
+ }
+
+ public String getTenant() {
+ return this.tenant;
+ }
+
+ public String getMethod() {
+ return method;
+ }
+}