[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / BRMSGateway / src / main / java / org / onap / policy / brmsInterface / BRMSGateway.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 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.brmsInterface;
22
23 import org.onap.policy.api.NotificationScheme;
24 import org.onap.policy.api.PolicyEngine;
25
26 //import org.apache.log4j.Logger;
27
28 //import org.apache.commons.logging.Log;
29 //import org.apache.commons.logging.LogFactory;
30
31 import org.onap.policy.common.logging.flexlogger.FlexLogger;
32 import org.onap.policy.common.logging.flexlogger.Logger;
33
34 import org.onap.policy.xacml.api.XACMLErrorConstants;
35
36
37 /**
38  * BRMSGateway: This application acts as the Gateway interface between the PDP XACML and PDP Drools. 
39  * The listens for BRMS based policies and pushes them to the specified Policy Repository, from where the PDP Drools reads the Rule Jar.  
40  * 
41  * @version 0.1
42  */
43 public class BRMSGateway {
44         
45         private static final Logger logger = FlexLogger.getLogger(BRMSGateway.class);
46         private static final String configFile = "config.properties";
47         
48         private static PolicyEngine policyEngine = null;
49         
50         public static void main(String[] args) throws Exception{
51                 // Initialize Handler. 
52                 logger.info("Initializing BRMS Handler");
53                 BRMSHandler bRMSHandler = null;
54                 try{
55                         bRMSHandler = new BRMSHandler(configFile);
56                 }catch(NullPointerException e){
57                         logger.error("Check your property file: " + e.getMessage());
58                         System.exit(1);
59                 }
60                 
61                 // Set Handler with Auto Notification and initialize policyEngine
62                 try{
63                         logger.info("Initializing policyEngine with Auto Notifications");
64                         policyEngine= new PolicyEngine(configFile,NotificationScheme.AUTO_ALL_NOTIFICATIONS, bRMSHandler);
65                 }catch(Exception e){
66                         logger.error(XACMLErrorConstants.ERROR_UNKNOWN+"Error while Initializing Policy Engine "  + e.getMessage()); 
67                 }
68                 
69                 //Keep Running.... 
70                 Runnable runnable = new Runnable(){
71                         public void run(){
72                                 while (true){
73                                         try {
74                                                 Thread.sleep(30000);
75                                         } catch (InterruptedException e) {
76                                                 logger.error(XACMLErrorConstants.ERROR_SYSTEM_ERROR+"Thread Exception " + e.getMessage()); 
77                                         }
78                                 }
79                         }
80                 };
81                 Thread thread = new Thread(runnable);
82                 thread.start();
83         }
84         
85         public static PolicyEngine getPolicyEngine(){
86                 return policyEngine;
87         }
88 }