Fix sonar issue affecting in drools-applications
[policy/models.git] / models-interactions / model-impl / aai / src / main / java / org / onap / policy / aai / AaiNqVfModule.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * aai
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.aai;
23
24 import com.google.gson.annotations.SerializedName;
25 import java.io.Serializable;
26 import lombok.Data;
27 import lombok.NoArgsConstructor;
28
29 @Data
30 @NoArgsConstructor
31 public class AaiNqVfModule implements Serializable {
32     private static final long serialVersionUID = 8019133081429638232L;
33
34     @SerializedName("vf-module-id")
35     private String vfModuleId;
36
37     @SerializedName("vf-module-name")
38     private String vfModuleName;
39
40     @SerializedName("heat-stack-id")
41     private String heatStackId;
42
43     @SerializedName("orchestration-status")
44     private String orchestrationStatus;
45
46     @SerializedName("is-base-vf-module")
47     private Boolean isBaseVfModule;
48
49     @SerializedName("resource-version")
50     private String resourceVersion;
51
52     @SerializedName("persona-model-id")
53     private String personaModelId;
54
55     @SerializedName("persona-model-version")
56     private String personaModelVersion;
57
58     @SerializedName("widget-model-id")
59     private String widgetModelId;
60
61     @SerializedName("widget-model-version")
62     private String widgetModelVersion;
63
64     @SerializedName("contrail-service-instance-fqdn")
65     private String contrailServiceInstanceFqdn;
66
67     @SerializedName("model-invariant-id")
68     private String modelInvariantId;
69
70     @SerializedName("model-version-id")
71     private String modelVersionId;
72
73     @SerializedName("model-customization-id")
74     private String modelCustomizationId = null;
75 }