dd6f5c6a0f6ead41ee76561a7b0e79172fe60aba
[usecase-ui/server.git] /
1 /**
2  * Copyright 2016-2017 ZTE Corporation.
3  * <p>
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
5  * the License. You may obtain a copy of the License at
6  * <p>
7  * http://www.apache.org/licenses/LICENSE-2.0
8  * <p>
9  * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
10  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
11  * specific language governing permissions and limitations under the License.
12  */
13 package org.onap.usecaseui.server.service.slicingdomain.aai.bean;
14
15 import java.util.List;
16
17 import com.fasterxml.jackson.annotation.JsonProperty;
18
19 public class AAIServiceAndInstance {
20
21     private String serviceInstanceId;
22
23     private String serviceInstanceName;
24
25     private String serviceType;
26
27     private String environmentContext;
28
29     private String modelInvariantId;
30
31     private String modelVersionId;
32
33     private String orchestrationStatus;
34
35     private String workloadContext;
36
37     private List<Relationship> relationshipList;
38
39
40     public String getEnvironmentContext() {
41         return environmentContext;
42     }
43
44     public void setEnvironmentContext(String environmentContext) {
45         this.environmentContext = environmentContext;
46     }
47
48     public String getServiceInstanceId() {
49         return serviceInstanceId;
50     }
51
52     public void setServiceInstanceId(String serviceInstanceId) {
53         this.serviceInstanceId = serviceInstanceId;
54     }
55
56     public String getServiceInstanceName() {
57         return serviceInstanceName;
58     }
59
60     public void setServiceInstanceName(String serviceInstanceName) {
61         this.serviceInstanceName = serviceInstanceName;
62     }
63
64     public String getServiceType() {
65         return serviceType;
66     }
67
68     public void setServiceType(String serviceType) {
69         this.serviceType = serviceType;
70     }
71
72     public String getModelInvariantId() {
73         return modelInvariantId;
74     }
75
76     public void setModelInvariantId(String modelInvariantId) {
77         this.modelInvariantId = modelInvariantId;
78     }
79
80     public String getModelVersionId() {
81         return modelVersionId;
82     }
83
84     public void setModelVersionId(String modelVersionId) {
85         this.modelVersionId = modelVersionId;
86     }
87
88     public String getOrchestrationStatus() {
89         return orchestrationStatus;
90     }
91
92     public void setOrchestrationStatus(String orchestrationStatus) {
93         this.orchestrationStatus = orchestrationStatus;
94     }
95
96     public List<Relationship> getRelationshipList() {
97         return relationshipList;
98     }
99
100     public void setRelationshipList(List<Relationship> relationshipList) {
101         this.relationshipList = relationshipList;
102     }
103
104     public String getWorkloadContext() {
105         return workloadContext;
106     }
107
108     public void setWorkloadContext(String workloadContext) {
109         this.workloadContext = workloadContext;
110     }
111
112
113 }