c0b27b615d065e7417d04e823b400d362b62a5f4
[ccsdk/dashboard.git] /
1 package org.onap.ccsdk.dashboard.model.deploymenthandler;
2
3 import com.fasterxml.jackson.annotation.JsonCreator;
4 import com.fasterxml.jackson.annotation.JsonProperty;
5
6 /**
7  * Links that the API client can access
8  *
9  */
10 public class DeploymentResponseLinks {
11         
12         /** Link used to retrieve information about the service being deployed. */
13         private final String self;
14         
15         /** Link used to retrieve information about the status of the installation workflow. */
16         private final String status;
17         
18         @JsonCreator
19         public DeploymentResponseLinks(@JsonProperty("self") String self, 
20                         @JsonProperty("status") String status) {
21                 this.self = self;
22                 this.status = status;
23         }
24         
25         public String getSelf() {
26                 return this.self;
27         }
28         
29         public String getStatus() {
30                 return this.status;
31         }
32 }