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 DeploymentResourceLinks {
7 /** Link used to retrieve information about the service being deployed. */
8 private final String self;
10 /** Link used to retrieve information about deployment outcome */
11 private final String outcome;
13 /** Link used to retrieve information about the status of the installation workflow. */
14 private final String status;
17 public DeploymentResourceLinks(
18 @JsonProperty("self") String self,
19 @JsonProperty("outcome") String outcome,
20 @JsonProperty("status") String status) {
22 this.outcome = outcome;
26 public String getSelf() {
30 public String getStatus() {
34 public String getOutcome() {