UI adaptation for supporting ONAP portal SDK
[validation.git] / ui / src / main / java / org / akraino / validation / ui / daoimpl / SiloDAOImpl.java
1 /*
2  * Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may
5  * not use this file except in compliance with the License. You may obtain
6  * a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13  * implied. See the License for the specific language governing
14  * permissions and limitations under the License.
15  */
16 package org.akraino.validation.ui.daoimpl;
17
18 import java.util.List;
19
20 import org.akraino.validation.ui.dao.SiloDAO;
21 import org.akraino.validation.ui.entity.LabSilo;
22 import org.hibernate.Criteria;
23 import org.hibernate.Session;
24 import org.hibernate.SessionFactory;
25 import org.hibernate.criterion.Restrictions;
26 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
27 import org.springframework.beans.factory.annotation.Autowired;
28 import org.springframework.stereotype.Repository;
29
30 @Repository
31 public class SiloDAOImpl implements SiloDAO {
32
33     private static final EELFLoggerDelegate LOGGER = EELFLoggerDelegate.getLogger(SiloDAOImpl.class);
34
35     @Autowired
36     private SessionFactory sessionFactory;
37
38     protected Session getSession() {
39         return sessionFactory.getCurrentSession();
40     }
41
42     @Override
43     public List<LabSilo> getSilos() {
44         Criteria criteria = getSession().createCriteria(LabSilo.class);
45         return criteria.list();
46     }
47
48     @Override
49     public LabSilo getSilo(Integer siloId) {
50         Criteria criteria = getSession().createCriteria(LabSilo.class);
51         criteria.add(Restrictions.eq("id", String.valueOf(siloId)));
52         return criteria.list() == null ? null : (LabSilo) criteria.list().get(0);
53     }
54
55     @Override
56     public void saveOrUpdate(LabSilo silo) {
57         getSession().saveOrUpdate(silo);
58     }
59
60     @Override
61     public void merge(LabSilo silo) {
62         getSession().merge(silo);
63     }
64
65     @Override
66     public void deleteSilo(LabSilo silo) {
67         getSession().delete(silo);
68     }
69
70     @Override
71     public void deleteAll() {
72         if (getSession().createQuery("delete from Silo").executeUpdate() > 0) {
73             LOGGER.info(EELFLoggerDelegate.applicationLogger, "All silo entries are cleaned up");
74         }
75     }
76
77 }