aboutsummaryrefslogtreecommitdiffstats
path: root/ONAP-PDP-REST/src/main/java/org/onap/policy
diff options
context:
space:
mode:
authoruj426b <uj426b@att.com>2017-09-21 16:27:41 -0400
committeruj426b <jauhari.utkarsh@gmail.com>2017-09-21 17:27:49 -0400
commit157f52b2844b80150b552f8a0e2506d1b3bf8cbf (patch)
tree7e3f086bec42e98401e63d50f84c5787d8e934ac /ONAP-PDP-REST/src/main/java/org/onap/policy
parent1b6feb8d0ca8094a0b7a552f1e3907f206be2527 (diff)
Adding Junits for policy engine PDP
Additional coverage for Policy PDP Issue-Id: POLICY-52 Change-Id: I1d401a150359ddb15c48098d0bd1dbd11e4d2b44 Signed-off-by: uj426b <jauhari.utkarsh@gmail.com>
Diffstat (limited to 'ONAP-PDP-REST/src/main/java/org/onap/policy')
-rw-r--r--ONAP-PDP-REST/src/main/java/org/onap/policy/pdp/rest/XACMLPdpServlet.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/ONAP-PDP-REST/src/main/java/org/onap/policy/pdp/rest/XACMLPdpServlet.java b/ONAP-PDP-REST/src/main/java/org/onap/policy/pdp/rest/XACMLPdpServlet.java
index 18c201737..b824312dc 100644
--- a/ONAP-PDP-REST/src/main/java/org/onap/policy/pdp/rest/XACMLPdpServlet.java
+++ b/ONAP-PDP-REST/src/main/java/org/onap/policy/pdp/rest/XACMLPdpServlet.java
@@ -180,6 +180,14 @@ public class XACMLPdpServlet extends HttpServlet implements Runnable {
private static volatile boolean configThreadTerminate = false;
private transient ONAPLoggingContext baseLoggingContext = null;
private transient IntegrityMonitor im;
+ public IntegrityMonitor getIm() {
+ return im;
+ }
+
+ public void setIm(IntegrityMonitor im) {
+ this.im = im;
+ }
+
/**
* Default constructor.
*/