blob: e7c2fc19d8f38b00fb16daf873481807952feb2d [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
21
22
23package org.onap.osam.aai.model;
24
25import com.fasterxml.jackson.annotation.JsonProperty;
26
27public class ServiceRelationships {
28
29 @JsonProperty("service-instance-id")
30 public String serviceInstanceId;
31
32 @JsonProperty("service-instance-name")
33 public String serviceInstanceName;
34
35 @JsonProperty("service-type")
36 public String serviceType;
37
38 @JsonProperty("service-role")
39 public String serviceRole;
40
41 @JsonProperty("environment-context")
42 public String environmentContext;
43
44 @JsonProperty("workload-context")
45 public String workloadContext;
46
47 @JsonProperty("model-invariant-id")
48 public String modelInvariantId;
49
50 @JsonProperty("model-version-id")
51 public String modelVersionId;
52
53 @JsonProperty("resource-version")
54 public String resourceVersion;
55
56 @JsonProperty("orchestration-status")
57 public String orchestrationStatus;
58
59 @JsonProperty("relationship-list")
60 public RelationshipList relationshipList;
61
62
63 public String getServiceInstanceId() {
64 return serviceInstanceId;
65 }
66
67 public void setServiceInstanceId(String serviceInstanceId) {
68 this.serviceInstanceId = serviceInstanceId;
69 }
70
71 public String getServiceInstanceName() {
72 return serviceInstanceName;
73 }
74
75 public void setServiceInstanceName(String serviceInstanceName) {
76 this.serviceInstanceName = serviceInstanceName;
77 }
78
79 public String getModelInvariantId() {
80 return modelInvariantId;
81 }
82
83 public void setModelInvariantId(String modelInvariantId) {
84 this.modelInvariantId = modelInvariantId;
85 }
86
87 public String getModelVersionId() {
88 return modelVersionId;
89 }
90
91 public void setModelVersionId(String modelVersionId) {
92 this.modelVersionId = modelVersionId;
93 }
94
95 public String getResourceVersion() {
96 return resourceVersion;
97 }
98
99 public void setResourceVersion(String resourceVersion) {
100 this.resourceVersion = resourceVersion;
101 }
102
103 public String getOrchestrationStatus() {
104 return orchestrationStatus;
105 }
106
107 public void setOrchestrationStatus(String orchestrationStatus) {
108 this.orchestrationStatus = orchestrationStatus;
109 }
110
111 public RelationshipList getRelationshipList() {
112 return relationshipList;
113 }
114
115 public void setRelationshipList(RelationshipList relationshipList) {
116 this.relationshipList = relationshipList;
117 }
118
119
120
121
122
123
124}