[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / ONAP-PDP / src / main / java / org / onap / policy / xacml / pdp / ONAPPDPEngineFactory.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PDP
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 package org.onap.policy.xacml.pdp;
21
22 import java.util.Properties;
23
24 import org.onap.policy.common.logging.flexlogger.FlexLogger; 
25 import org.onap.policy.common.logging.flexlogger.Logger;
26 import com.att.research.xacml.api.pdp.PDPEngine;
27 import com.att.research.xacml.api.pdp.PDPEngineFactory;
28 import com.att.research.xacml.util.FactoryException;
29 import com.att.research.xacmlatt.pdp.eval.EvaluationContextFactory;
30
31 public class ONAPPDPEngineFactory extends PDPEngineFactory {
32         private Logger logger   = FlexLogger.getLogger(this.getClass());
33
34         @Override
35         public PDPEngine newEngine() throws FactoryException {
36                 EvaluationContextFactory evaluationContextFactory       = EvaluationContextFactory.newInstance();
37                 if (evaluationContextFactory == null) {
38                         this.logger.error("Null EvaluationContextFactory");
39                         throw new FactoryException("Null EvaluationContextFactory");
40                 }
41                 return new ONAPPDPEngine(evaluationContextFactory, this.getDefaultBehavior(), this.getScopeResolver());
42         }
43
44         @Override
45         public PDPEngine newEngine(Properties properties) throws FactoryException {
46                 EvaluationContextFactory evaluationContextFactory       = EvaluationContextFactory.newInstance(properties);
47                 if (evaluationContextFactory == null) {
48                         this.logger.error("Null EvaluationContextFactory");
49                         throw new FactoryException("Null EvaluationContextFactory");
50                 }
51                 return new ONAPPDPEngine(evaluationContextFactory, this.getDefaultBehavior(), this.getScopeResolver(), properties);
52         }
53
54 }