991e8231b06ed7d2d3f93f01567eab8431cf4f41
[policy/models.git] / models-pdp / src / main / java / org / onap / policy / models / pdp / persistence / provider / PdpFilterParameters.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.models.pdp.persistence.provider;
22
23 import java.time.Instant;
24 import java.util.Map;
25 import lombok.Builder;
26 import lombok.Getter;
27 import lombok.Setter;
28 import org.onap.policy.models.dao.PfFilterParametersIntfc;
29
30 @Getter
31 @Builder
32 public class PdpFilterParameters implements PfFilterParametersIntfc {
33     // PDP instance ID
34     private String name;
35
36     private Instant startTime;
37     private Instant endTime;
38
39     @Setter
40     private int recordNum;
41     @Builder.Default
42     private String sortOrder = "DESC";
43
44     private String group;
45     private String subGroup;
46
47     // initialized lazily, if not set via the builder
48     private Map<String, Object> filterMap;
49
50     @Override
51     public Map<String, Object> getFilterMap() {
52         if (filterMap != null) {
53             return filterMap;
54
55         } else if (group == null) {
56             return null;
57
58         } else if (subGroup == null) {
59             filterMap = Map.of("pdpGroupName", group);
60             return filterMap;
61
62         } else {
63             filterMap = Map.of("pdpGroupName", group, "pdpSubGroupName", subGroup);
64             return filterMap;
65         }
66     }
67
68     @Override
69     public String getVersion() {
70         // version is not used
71         return null;
72     }
73 }