Fix sonar issue affecting in drools-applications
[policy/models.git] / models-interactions / model-impl / aai / src / main / java / org / onap / policy / aai / AaiNqGenericVnf.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 AaiNqGenericVnf implements Serializable {
32
33     private static final long serialVersionUID = 834322706248060560L;
34
35     @SerializedName("vnf-id")
36     private String vnfId;
37
38     @SerializedName("vnf-name")
39     private String vnfName;
40
41     @SerializedName("vnf-name2")
42     private String vnfName2;
43
44     @SerializedName("vnf-type")
45     private String vnfType;
46
47     @SerializedName("service-id")
48     private String serviceId;
49
50     @SerializedName("prov-status")
51     private String provStatus;
52
53     @SerializedName("operational-state")
54     private String operationalState;
55
56     @SerializedName("ipv4-oam-address")
57     private String ipv4OamAddress;
58
59     @SerializedName("ipv4-loopback0-address")
60     private String ipv4Loopback0Address;
61
62     @SerializedName("in-maint")
63     private Boolean inMaint;
64
65     @SerializedName("is-closed-loop-disabled")
66     private Boolean isClosedLoopDisabled;
67
68     @SerializedName("resource-version")
69     private String resourceVersion;
70
71     @SerializedName("encrypted-access-flag")
72     private Boolean encrypedAccessFlag;
73
74     @SerializedName("persona-model-id")
75     private String personaModelId;
76
77     @SerializedName("persona-model-version")
78     private String personaModelVersion;
79
80     @SerializedName("model-invariant-id")
81     private String modelInvariantId;
82
83     @SerializedName("model-version-id")
84     private String modelVersionId;
85
86     @SerializedName("model-customization-id")
87     private String modelCustomizationId = null;
88 }