1 package org.onap.ccsdk.dashboard.model.deploymenthandler;
3 import com.fasterxml.jackson.annotation.JsonCreator;
4 import com.fasterxml.jackson.annotation.JsonProperty;
7 * Response body for a PUT or DELETE to /dcae-deployments/{deploymentId}
10 public class DeploymentResponse {
12 /** Unique Identifier for the request */
13 private String requestId;
15 /** Links that the API client can access */
16 private DeploymentResponseLinks links;
19 public DeploymentResponse(@JsonProperty("requestId") String requestId,
20 @JsonProperty("links") DeploymentResponseLinks links) {
21 this.requestId = requestId;
25 public String getRequestId() {
26 return this.requestId;
29 public DeploymentResponseLinks getLinks() {