Fixes for eclipse warnings unused variables
[policy/engine.git] / ONAP-PAP-REST / src / main / java / org / onap / policy / pap / xacml / rest / XACMLPapServlet.java
index 45f803f..53d801b 100644 (file)
@@ -72,7 +72,6 @@ import org.onap.policy.common.logging.eelf.MessageCodes;
 import org.onap.policy.common.logging.eelf.PolicyLogger;
 import org.onap.policy.common.logging.flexlogger.FlexLogger;
 import org.onap.policy.common.logging.flexlogger.Logger;
-import org.onap.policy.pap.xacml.rest.components.AutoPushPolicy;
 import org.onap.policy.pap.xacml.rest.components.PolicyDBDao;
 import org.onap.policy.pap.xacml.rest.components.PolicyDBDaoTransaction;
 import org.onap.policy.pap.xacml.rest.handler.APIRequestHandler;
@@ -161,7 +160,6 @@ public class XACMLPapServlet extends HttpServlet implements StdItemSetChangeList
        private static Integer papAuditTimeout = null;
        private static Boolean papAuditFlag = null;
        private static Boolean papFileSystemAudit = null;
-       private static Boolean autoPushFlag = false;
        private static String papResourceName = null;
        private static Integer fpMonitorInterval = null; 
        private static Integer failedCounterThreshold = null;
@@ -187,7 +185,6 @@ public class XACMLPapServlet extends HttpServlet implements StdItemSetChangeList
         */
        private Thread initiateThread = null;
        private ONAPLoggingContext baseLoggingContext = null;
-       private AutoPushPolicy autoPushPolicy;
        
        /**
         * @see HttpServlet#HttpServlet()
@@ -266,24 +263,6 @@ public class XACMLPapServlet extends HttpServlet implements StdItemSetChangeList
                        //Boolean will default to false if anything is missing or unrecognized
                        papAuditFlag = Boolean.parseBoolean(XACMLProperties.getProperty(XACMLRestProperties.PROP_PAP_RUN_AUDIT_FLAG));
                        papFileSystemAudit = Boolean.parseBoolean(XACMLProperties.getProperty(XACMLRestProperties.PROP_PAP_AUDIT_FLAG));
-                       //PAP Auto Push 
-                       autoPushFlag = Boolean.parseBoolean(XACMLProperties.getProperty(XACMLRestProperties.PROP_PAP_PUSH_FLAG));
-                       // if Auto push then Load with properties. 
-                       if(autoPushFlag){
-                               String file;
-                               try{
-                                       file = XACMLProperties.getProperty(XACMLRestProperties.PROP_PAP_PUSH_FILE);
-                                       if(file.endsWith(".properties")){
-                                               autoPushPolicy = new AutoPushPolicy(file);
-                                       }else{
-                                               throw new PAPException();
-                                       }
-                               }catch(Exception e){
-                                       PolicyLogger.error(MessageCodes.ERROR_DATA_ISSUE + " Missing property or not a proper property file check for: " + XACMLRestProperties.PROP_PAP_PUSH_FILE );  
-                                       LOGGER.info("Overriding the autoPushFlag to False...");
-                                       autoPushFlag = false;
-                               }
-                       }
                        papDependencyGroups = XACMLProperties.getProperty(XACMLRestProperties.PAP_DEPENDENCY_GROUPS);
                        if(papDependencyGroups == null){
                                throw new PAPException("papDependencyGroups is null");
@@ -326,7 +305,6 @@ public class XACMLPapServlet extends HttpServlet implements StdItemSetChangeList
                                        + "\n   papAuditTimeout = " + papAuditTimeout
                                        + "\n   papAuditFlag = " + papAuditFlag
                                        + "\n   papFileSystemAudit = " + papFileSystemAudit
-                                       + "\n   autoPushFlag = " + autoPushFlag
                                        + "\n   papResourceName = " + papResourceName
                                        + "\n   fpMonitorInterval = " + fpMonitorInterval
                                        + "\n   failedCounterThreshold = " + failedCounterThreshold