From cac1b44880610e19ae831d3f3656b8b835389db0 Mon Sep 17 00:00:00 2001 From: "pramod.jamkhedkar" Date: Mon, 18 May 2020 11:27:50 -0400 Subject: Change CLC granularity to CL level. Change CLC granularity from target level to CL level. Remove the target matching for the db query at PIP level. Issue-ID: POLICY-2573 Change-Id: If9ba1a4d22c3b8bc5dfce0632f7037ad085f6ea6 Signed-off-by: pramod.jamkhedkar --- .../common/operationshistory/GetOperationOutcomePip.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'applications/common/src/main/java/org/onap') diff --git a/applications/common/src/main/java/org/onap/policy/pdp/xacml/application/common/operationshistory/GetOperationOutcomePip.java b/applications/common/src/main/java/org/onap/policy/pdp/xacml/application/common/operationshistory/GetOperationOutcomePip.java index b269e25a..fb018b02 100644 --- a/applications/common/src/main/java/org/onap/policy/pdp/xacml/application/common/operationshistory/GetOperationOutcomePip.java +++ b/applications/common/src/main/java/org/onap/policy/pdp/xacml/application/common/operationshistory/GetOperationOutcomePip.java @@ -90,7 +90,7 @@ public class GetOperationOutcomePip extends StdOnapPip { target = getAttribute(pipFinder, PIP_REQUEST_TARGET); logger.debug("Going to query DB about: clname={}, target={}", clname, target); - String outcome = doDatabaseQuery(clname, target); + String outcome = doDatabaseQuery(clname); logger.debug("Query result is: {}", outcome); StdMutablePIPResponse pipResponse = new StdMutablePIPResponse(); @@ -102,8 +102,8 @@ public class GetOperationOutcomePip extends StdOnapPip { return new StdPIPResponse(pipResponse); } - private String doDatabaseQuery(String clname, String target) { - logger.info("Querying operations history for {} {}", clname, target); + private String doDatabaseQuery(String clname) { + logger.info("Querying operations history for {}", clname); // // Only can query if we have an EntityManager // @@ -120,11 +120,9 @@ public class GetOperationOutcomePip extends StdOnapPip { // return em.createQuery("select e.outcome from Dbao e" + " where e.closedLoopName= ?1" - + " and e.target= ?2" + " order by e.endtime desc", String.class) .setParameter(1, clname) - .setParameter(2, target) .setMaxResults(1) .getSingleResult(); } catch (NoResultException e) { -- cgit 1.2.3-korg