summaryrefslogtreecommitdiffstats
path: root/models-pdp/src/main
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2021-07-12 10:04:40 -0400
committerJim Hahn <jrh3@att.com>2021-07-12 10:07:36 -0400
commit24b9a9a0f5a3c95c1ebb0c5d5316fdf05ef7f8dd (patch)
treeda6176b8310de3ac163524542ed57b938781fd92 /models-pdp/src/main
parent43ed6b71f24a06834ee9fd6f7ceb28eda2c351ba (diff)
Remove unused DAO statistics methods
The PDP statistics provider had several filter methods, at least one of which has now been subsumed by another and is no longer being used. Issue-ID: POLICY-3405 Change-Id: If603eaf3df36fd4e6e3555376bf1b95144ec8eb1 Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'models-pdp/src/main')
-rw-r--r--models-pdp/src/main/java/org/onap/policy/models/pdp/persistence/provider/PdpStatisticsProvider.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/models-pdp/src/main/java/org/onap/policy/models/pdp/persistence/provider/PdpStatisticsProvider.java b/models-pdp/src/main/java/org/onap/policy/models/pdp/persistence/provider/PdpStatisticsProvider.java
index ea118f362..195f51f2d 100644
--- a/models-pdp/src/main/java/org/onap/policy/models/pdp/persistence/provider/PdpStatisticsProvider.java
+++ b/models-pdp/src/main/java/org/onap/policy/models/pdp/persistence/provider/PdpStatisticsProvider.java
@@ -25,9 +25,7 @@ package org.onap.policy.models.pdp.persistence.provider;
import java.time.Instant;
import java.util.ArrayList;
-import java.util.HashMap;
import java.util.List;
-import java.util.Map;
import java.util.stream.Collectors;
import javax.ws.rs.core.Response;
import lombok.NonNull;
@@ -93,44 +91,6 @@ public class PdpStatisticsProvider {
* Get filtered PDP statistics.
*
* @param dao the DAO to use to access the database
- * @param name the pdpInstance name for the PDP statistics to get
- * @param pdpGroupName pdpGroupName to filter statistics
- * @param pdpSubGroup pdpSubGroupType name to filter statistics
- * @param startTimeStamp startTimeStamp to filter statistics
- * @param endTimeStamp endTimeStamp to filter statistics
- * @param sortOrder sortOrder to query database
- * @param getRecordNum Total query count from database
- * @return the PDP statistics found
- * @throws PfModelException on errors getting policies
- */
- public List<PdpStatistics> getFilteredPdpStatistics(@NonNull final PfDao dao, final String name,
- @NonNull final String pdpGroupName, final String pdpSubGroup, final Instant startTimeStamp,
- final Instant endTimeStamp, final String sortOrder, final int getRecordNum) {
- Map<String, Object> filterMap = new HashMap<>();
- filterMap.put("pdpGroupName", pdpGroupName);
- if (pdpSubGroup != null) {
- filterMap.put("pdpSubGroupName", pdpSubGroup);
- }
-
- // @formatter:off
- return asPdpStatisticsList(
- dao.getFiltered(JpaPdpStatistics.class,
- PdpFilterParameters.builder()
- .name(name)
- .startTime(startTimeStamp)
- .endTime(endTimeStamp)
- .group(pdpGroupName)
- .subGroup(pdpSubGroup)
- .sortOrder(sortOrder)
- .recordNum(getRecordNum)
- .build()));
- // @formatter:on
- }
-
- /**
- * Get filtered PDP statistics.
- *
- * @param dao the DAO to use to access the database
* @param filterParams filter parameters
* @return the PDP statistics found
* @throws PfModelException on errors getting policies