dc587f2c7df16c450b92f1ca80e27c40dd7e3987
[policy/models.git] / models-interactions / model-impl / aai / src / main / java / org / onap / policy / aai / AaiGetVnfResponse.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 excthe License at
10  * ept in compliance with the License.
11  * You may obtain a copy of
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.EqualsAndHashCode;
28 import lombok.NoArgsConstructor;
29
30 @Data
31 @EqualsAndHashCode(callSuper = true)
32 @NoArgsConstructor
33 public class AaiGetVnfResponse extends AaiGetResponse implements Serializable {
34
35     private static final long serialVersionUID = -6247505944905898871L;
36
37     @SerializedName("vnf-id")
38     private String vnfId;
39
40     @SerializedName("vnf-name")
41     private String vnfName;
42
43     @SerializedName("vnf-type")
44     private String vnfType;
45
46     @SerializedName("service-id")
47     private String serviceId;
48
49     @SerializedName("orchestration-status")
50     private String orchestrationStatus;
51
52     @SerializedName("in-maint")
53     private boolean inMaint;
54
55     @SerializedName("is-closed-loop-disabled")
56     private boolean isClosedLoopDisabled;
57
58     @SerializedName("model-invariant-id")
59     private String modelInvariantId;
60
61     @SerializedName("prov-status")
62     private String provStatus;
63
64     @SerializedName("resource-version")
65     private String resourceVersion;
66
67     @SerializedName("relationship-list")
68     private RelationshipList relationshipList;
69 }