1 package org.onap.ccsdk.dashboard.model.deploymenthandler;
3 import com.fasterxml.jackson.annotation.JsonCreator;
4 import com.fasterxml.jackson.annotation.JsonProperty;
7 * Links that the API client can access
10 public class DeploymentResponseLinks {
12 /** Link used to retrieve information about the service being deployed. */
13 private final String self;
15 /** Link used to retrieve information about the status of the installation workflow. */
16 private final String status;
19 public DeploymentResponseLinks(@JsonProperty("self") String self,
20 @JsonProperty("status") String status) {
25 public String getSelf() {
29 public String getStatus() {