[SO] Release so 1.13.0 image
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / modelinfo / ModelInfoNetwork.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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 package org.onap.so.bpmn.servicedecomposition.modelinfo;
22
23 import java.io.Serializable;
24 import java.sql.Timestamp;
25 import com.fasterxml.jackson.annotation.JsonProperty;
26
27 public class ModelInfoNetwork implements Serializable {
28
29     private static final long serialVersionUID = -3612850497900637132L;
30
31     @JsonProperty("model-customization-uuid")
32     private String ModelCustomizationUUID;
33     @JsonProperty("model-instance-name")
34     private String ModelInstanceName;
35     @JsonProperty("network-technology")
36     private String NetworkTechnology;
37     @JsonProperty("network-type")
38     private String NetworkType;
39     @JsonProperty("network-scope")
40     private String NetworkScope;
41     @JsonProperty("network-role")
42     private String NetworkRole;
43     @JsonProperty("description")
44     private String Description;
45     @JsonProperty("created")
46     private Timestamp Created;
47     @JsonProperty("model-version")
48     private String ModelVersion;
49     @JsonProperty("model-invariant-uuid")
50     private String ModelInvariantUUID;
51     @JsonProperty("model-name")
52     private String ModelName;
53     @JsonProperty("model-uuid")
54     private String ModelUUID;
55     @JsonProperty("neutron-network-type")
56     private String NeutronNetworkType;
57     @JsonProperty("aic-version-min")
58     private String AicVersionMin;
59     @JsonProperty("aic-version-max")
60     private String AicVersionMax;
61     @JsonProperty("orchestration-mode")
62     private String OrchestrationMode;
63     @JsonProperty("tosca-node-type")
64     private String ToscaNodeType;
65
66     public String getModelCustomizationUUID() {
67         return ModelCustomizationUUID;
68     }
69
70     public void setModelCustomizationUUID(String modelCustomizationUUID) {
71         ModelCustomizationUUID = modelCustomizationUUID;
72     }
73
74     public String getModelInstanceName() {
75         return ModelInstanceName;
76     }
77
78     public void setModelInstanceName(String modelInstanceName) {
79         ModelInstanceName = modelInstanceName;
80     }
81
82     public String getNetworkTechnology() {
83         return NetworkTechnology;
84     }
85
86     public void setNetworkTechnology(String networkTechnology) {
87         NetworkTechnology = networkTechnology;
88     }
89
90     public String getNetworkType() {
91         return NetworkType;
92     }
93
94     public void setNetworkType(String networkType) {
95         NetworkType = networkType;
96     }
97
98     public String getNetworkScope() {
99         return NetworkScope;
100     }
101
102     public void setNetworkScope(String networkScope) {
103         NetworkScope = networkScope;
104     }
105
106     public String getNetworkRole() {
107         return NetworkRole;
108     }
109
110     public void setNetworkRole(String networkRole) {
111         NetworkRole = networkRole;
112     }
113
114     public String getDescription() {
115         return Description;
116     }
117
118     public void setDescription(String description) {
119         Description = description;
120     }
121
122     public Timestamp getCreated() {
123         return Created;
124     }
125
126     public void setCreated(Timestamp created) {
127         Created = created;
128     }
129
130     public String getModelVersion() {
131         return ModelVersion;
132     }
133
134     public void setModelVersion(String modelVersion) {
135         ModelVersion = modelVersion;
136     }
137
138     public String getModelInvariantUUID() {
139         return ModelInvariantUUID;
140     }
141
142     public void setModelInvariantUUID(String modelInvariantUUID) {
143         ModelInvariantUUID = modelInvariantUUID;
144     }
145
146     public String getModelName() {
147         return ModelName;
148     }
149
150     public void setModelName(String modelName) {
151         ModelName = modelName;
152     }
153
154     public String getModelUUID() {
155         return ModelUUID;
156     }
157
158     public void setModelUUID(String modelUUID) {
159         ModelUUID = modelUUID;
160     }
161
162     public String getNeutronNetworkType() {
163         return NeutronNetworkType;
164     }
165
166     public void setNeutronNetworkType(String neutronNetworkType) {
167         NeutronNetworkType = neutronNetworkType;
168     }
169
170     public String getAicVersionMin() {
171         return AicVersionMin;
172     }
173
174     public void setAicVersionMin(String aicVersionMin) {
175         AicVersionMin = aicVersionMin;
176     }
177
178     public String getAicVersionMax() {
179         return AicVersionMax;
180     }
181
182     public void setAicVersionMax(String aicVersionMax) {
183         AicVersionMax = aicVersionMax;
184     }
185
186     public String getOrchestrationMode() {
187         return OrchestrationMode;
188     }
189
190     public void setOrchestrationMode(String orchestrationMode) {
191         OrchestrationMode = orchestrationMode;
192     }
193
194     public String getToscaNodeType() {
195         return ToscaNodeType;
196     }
197
198     public void setToscaNodeType(String toscaNodeType) {
199         ToscaNodeType = toscaNodeType;
200     }
201 }