775c15452126faea5cf501248c34d75aa784001f
[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     private String name;
34     private String version;
35     private Instant startTime;
36     private Instant endTime;
37
38     @Setter
39     private int recordNum;
40     @Builder.Default
41     private String sortOrder = "DESC";
42
43     private String group;
44     private String subGroup;
45
46     // initialized lazily, if not set via the builder
47     private Map<String, Object> filterMap;
48
49     @Override
50     public Map<String, Object> getFilterMap() {
51         if (filterMap != null) {
52             return filterMap;
53
54         } else if (group == null) {
55             return null;
56
57         } else if (subGroup == null) {
58             filterMap = Map.of("pdpGroupName", group);
59             return filterMap;
60
61         } else {
62             filterMap = Map.of("pdpGroupName", group, "pdpSubGroupName", subGroup);
63             return filterMap;
64         }
65     }
66 }