Sonar fix forONAP-PAP-REST critical sonar issues
[policy/engine.git] / ONAP-PAP-REST / src / main / java / org / onap / policy / pap / xacml / rest / handler / DictionaryHandler.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PAP-REST
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.pap.xacml.rest.handler;
21
22 import javax.servlet.http.HttpServletRequest;
23 import javax.servlet.http.HttpServletResponse;
24
25 import org.onap.policy.common.logging.eelf.PolicyLogger;
26 import org.onap.policy.common.logging.flexlogger.FlexLogger;
27 import org.onap.policy.common.logging.flexlogger.FlexLogger;
28 import org.onap.policy.common.logging.flexlogger.Logger;
29 import com.att.research.xacml.util.XACMLProperties;
30
31 public interface DictionaryHandler {
32         public static final Logger logger = FlexLogger.getLogger(DictionaryHandler.class);
33         String DICTIONARY_DEFAULT_CLASS = DictionaryHandlerImpl.class.getName();
34
35         /*
36          * Get Instance
37          */
38         public static DictionaryHandler getInstance(){
39                 try {
40                         Class<?> dictionaryHandler = Class.forName(XACMLProperties.getProperty("dictionary.impl.className", DICTIONARY_DEFAULT_CLASS));
41                         DictionaryHandler instance = (DictionaryHandler) dictionaryHandler.newInstance(); 
42                         return instance;
43                 } catch (Exception e) {
44                         logger.error(e.getMessage(),e);
45                 }
46                 return null;
47         }
48         
49         /*
50          * Get Equivalent for Dictionary Services.
51          */
52         public void doDictionaryAPIGet(HttpServletRequest request, HttpServletResponse response);
53         /*
54          * Put Equivalent for Dictionary Services. 
55          */
56         public void doDictionaryAPIPut(HttpServletRequest request, HttpServletResponse response);
57         
58         /**
59          * Can be used to extend the services.
60          * 
61          * getflag=true indicates Get Request.
62          * getflag=false indicates Put Request.  
63          * @return 
64          */
65         public String extendedOptions(String dictionaryType, HttpServletRequest request, HttpServletResponse response, boolean getflag);
66 }