blob: e380978544db93de1c2fda84c527adc8b803b241 [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 LogicalLinkResponse {
28
29 @JsonProperty("link-name")
30 public String linkName;
31
32 @JsonProperty("in-maint")
33 public Boolean inMaint;
34
35 @JsonProperty("link-type")
36 public String linkType;
37
38 @JsonProperty("resource-version")
39 public String resourceVersion;
40
41 @JsonProperty("purpose")
42 public String purpose;
43
44 @JsonProperty("relationship-list")
45 public RelationshipList relationshipList;
46
47 public String getLinkName() {
48 return linkName;
49 }
50
51 public void setLinkName(String linkName) {
52 this.linkName = linkName;
53 }
54
55 public Boolean getInMaint() {
56 return inMaint;
57 }
58
59 public void setInMaint(Boolean inMaint) {
60 this.inMaint = inMaint;
61 }
62
63 public String getLinkType() {
64 return linkType;
65 }
66
67 public void setLinkType(String linkType) {
68 this.linkType = linkType;
69 }
70
71 public String getResourceVersion() {
72 return resourceVersion;
73 }
74
75 public void setResourceVersion(String resourceVersion) {
76 this.resourceVersion = resourceVersion;
77 }
78
79 public String getPurpose() {
80 return purpose;
81 }
82
83 public void setPurpose(String purpose) {
84 this.purpose = purpose;
85 }
86
87 public RelationshipList getRelationshipList() {
88 return relationshipList;
89 }
90
91 public void setRelationshipList(RelationshipList relationshipList) {
92 this.relationshipList = relationshipList;
93 }
94}