CSIT Support for ServiceLevel PNF Software Upgrade
[integration/csit.git] / plans / usecases-pnf-sw-upgrade / pnf-sw-upgrade / sorch / simulator / aai-simulator / src / main / java / org / onap / aaisimulator / models / ModelVersion.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.aaisimulator.models;
21
22 import com.google.gson.annotations.Expose;
23 import com.google.gson.annotations.SerializedName;
24
25 public class ModelVersion {
26
27     @SerializedName("model-version-id")
28     @Expose
29     private String modelVersionId;
30
31     @SerializedName("model-name")
32     @Expose
33     private String modelName;
34
35     @SerializedName("model-version")
36     @Expose
37     private String modelVersion;
38
39     @SerializedName("model-description")
40     @Expose
41     private String modelDescription;
42
43     @SerializedName("resource-version")
44     @Expose
45     private String resourceVersion;
46
47     public String getModelVersionId() {
48         return modelVersionId;
49     }
50
51     public void setModelVersionId(String modelVersionId) {
52         this.modelVersionId = modelVersionId;
53     }
54
55     public String getModelName() {
56         return modelName;
57     }
58
59     public void setModelName(String modelName) {
60         this.modelName = modelName;
61     }
62
63     public String getModelVersion() {
64         return modelVersion;
65     }
66
67     public void setModelVersion(String modelVersion) {
68         this.modelVersion = modelVersion;
69     }
70
71     public String getModelDescription() {
72         return modelDescription;
73     }
74
75     public void setModelDescription(String modelDescription) {
76         this.modelDescription = modelDescription;
77     }
78
79     public String getResourceVersion() {
80         return resourceVersion;
81     }
82
83     public void setResourceVersion(String resourceVersion) {
84         this.resourceVersion = resourceVersion;
85     }
86 }