Initial OpenECOMP policy/engine commit
[policy/engine.git] / ecomp-sdk-app / src / main / java / org / openecomp / policy / daoImp / PDPEntityDaoImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ECOMP 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.openecomp.policy.daoImp;
22
23
24 import java.util.List;
25
26 import org.hibernate.Criteria;
27 import org.hibernate.Session;
28 import org.hibernate.SessionFactory;
29 import org.hibernate.Transaction;
30 import org.openecomp.policy.dao.PDPEntityDao;
31 import org.openecomp.policy.rest.jpa.PdpEntity;
32 import org.springframework.beans.factory.annotation.Autowired;
33 import org.springframework.stereotype.Service;
34
35 import org.openecomp.policy.xacml.api.XACMLErrorConstants;
36
37 import org.openecomp.policy.common.logging.flexlogger.FlexLogger;
38 import org.openecomp.policy.common.logging.flexlogger.Logger;
39
40 @Service("PDPEntityDataDao")
41 public class PDPEntityDaoImpl implements PDPEntityDao {
42         private static final Logger logger = FlexLogger.getLogger(PDPEntityDaoImpl.class);
43         @Autowired
44         SessionFactory sessionfactory;
45         
46         @SuppressWarnings("unchecked")
47         @Override
48         public List<PdpEntity> getPDPEntityData() {
49                 Session session = sessionfactory.openSession();
50                 Transaction tx = session.beginTransaction();
51                  List<PdpEntity> pdpData = null;
52         try {
53                 Criteria cr = session.createCriteria(PdpEntity.class);
54             pdpData = cr.list();
55                         tx.commit();
56                 } catch (Exception e) {
57                         logger.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + "Error While Querying PdpEntity Table"+e);        
58                 }finally{
59                         try{
60                                 session.close();
61                         }catch(Exception e1){
62                                 logger.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + "Error While Closing Connection/Statement"+e1);
63                         }
64                 }
65                 return pdpData;
66         }
67
68 }