Composite State to handle dmi-reg YANG updates
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / inventory / CompositeState.java
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2022 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
21 package org.onap.cps.ncmp.api.inventory;
22
23 import com.fasterxml.jackson.annotation.JsonInclude;
24 import com.fasterxml.jackson.annotation.JsonProperty;
25 import lombok.Builder;
26 import lombok.Data;
27 import lombok.Getter;
28 import lombok.NoArgsConstructor;
29 import lombok.Setter;
30
31 /**
32  * State Model to store state corresponding to the Yang resource dmi-registry model.
33  */
34 @Getter
35 @Setter
36 @NoArgsConstructor
37 @JsonInclude(JsonInclude.Include.NON_NULL)
38 public class CompositeState {
39
40     @JsonProperty("cm-handle-state")
41     private CmHandleState cmhandleState;
42
43     @JsonProperty("lock-reason")
44     private LockReason lockReason;
45
46     @JsonProperty("last-update-time")
47     private String lastUpdateTime;
48
49     @JsonProperty("data-sync-enabled")
50     private Boolean dataSyncEnabled;
51
52     @JsonProperty("datastores")
53     private DataStores dataStores;
54
55     @Data
56     @Builder
57     @JsonInclude(JsonInclude.Include.NON_NULL)
58     public static class LockReason {
59
60         @JsonProperty("reason")
61         private String reason;
62
63         @JsonProperty("details")
64         private String details;
65
66     }
67
68     @Data
69     @Builder
70     @JsonInclude(JsonInclude.Include.NON_NULL)
71     public static class DataStores {
72
73         @JsonProperty("operational")
74         private Operational operationalDataStore;
75
76         @JsonProperty("running")
77         private Running runningDataStore;
78     }
79
80     @Data
81     @Builder
82     @JsonInclude(JsonInclude.Include.NON_NULL)
83     public static class Operational {
84
85         @JsonProperty("sync-state")
86         private String syncState;
87
88         @JsonProperty("last-sync-time")
89         private String lastSyncTime;
90     }
91
92     @Data
93     @Builder
94     @JsonInclude(JsonInclude.Include.NON_NULL)
95     public static class Running {
96
97         @JsonProperty("sync-state")
98         private String syncState;
99
100         @JsonProperty("last-sync-time")
101         private String lastSyncTime;
102     }
103
104 }