UI adaptation for supporting ONAP portal SDK
[validation.git] / ui / src / main / java / org / akraino / validation / ui / daoimpl / SubmissionDAOImpl.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.SubmissionDAO;
21 import org.akraino.validation.ui.entity.Submission;
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 SubmissionDAOImpl implements SubmissionDAO {
32
33     private static final EELFLoggerDelegate LOGGER = EELFLoggerDelegate.getLogger(SubmissionDAOImpl.class);
34
35     @Autowired
36     private SessionFactory sessionFactory;
37
38     protected Session getSession() {
39         return sessionFactory.getCurrentSession();
40     }
41
42     @Override
43     public List<Submission> getSubmissions() {
44         Criteria criteria = getSession().createCriteria(Submission.class);
45         return criteria.list();
46     }
47
48     @Override
49     public Submission getSubmission(Integer submissionId) {
50         Criteria criteria = getSession().createCriteria(Submission.class);
51         criteria.add(Restrictions.eq("id", submissionId));
52         return criteria.list() == null || criteria.list().size() < 1 ? null : (Submission) criteria.list().get(0);
53     }
54
55     @Override
56     public void saveOrUpdate(Submission submission) {
57         getSession().saveOrUpdate(submission);
58     }
59
60     @Override
61     public void merge(Submission submission) {
62         getSession().merge(submission);
63     }
64
65     @Override
66     public void deleteSubmission(Submission submission) {
67         getSession().delete(submission);
68     }
69
70     @Override
71     public void deleteSubmission(Integer submissionId) {
72         getSession().delete(this.getSubmission(submissionId));
73     }
74
75     @Override
76     public void deleteAll() {
77         if (getSession().createQuery("delete from Submission").executeUpdate() > 0) {
78             LOGGER.info(EELFLoggerDelegate.applicationLogger, "All submission entries are cleaned up");
79         }
80     }
81
82 }