1 package org.onap.ccsdk.dashboard.model.deploymenthandler;
3 import com.fasterxml.jackson.annotation.JsonCreator;
4 import com.fasterxml.jackson.annotation.JsonProperty;
6 public class DeploymentResource {
7 /** Unique Identifier for the resource */
8 private String deploymentId;
10 public String getDeploymentId() {
14 public void setDeploymentId(String deploymentId) {
15 this.deploymentId = deploymentId;
18 /** Links that the API client can access */
19 private DeploymentResourceLinks links;
22 public DeploymentResource(@JsonProperty("deployment_id") String deploymentId,
23 @JsonProperty("links") DeploymentResourceLinks links) {
24 this.deploymentId = deploymentId;
28 public DeploymentResourceLinks getLinks() {