com.ikon.dao.ProfileDAO.java Source code

Java tutorial

Introduction

Here is the source code for com.ikon.dao.ProfileDAO.java

Source

/**
 *  openkm, Open Document Management System (http://www.openkm.com)
 *  Copyright (c) 2006-2013  Paco Avila & Josep Llort
 *
 *  No bytes were intentionally harmed during the development of this application.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *  
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

package com.ikon.dao;

import java.util.List;

import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.Transaction;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.ikon.core.DatabaseException;
import com.ikon.dao.bean.Profile;

public class ProfileDAO {
    private static Logger log = LoggerFactory.getLogger(ProfileDAO.class);

    private ProfileDAO() {
    }

    /**
     * Create
     */
    public static long create(Profile up) throws DatabaseException {
        log.debug("create({})", up);
        Session session = null;
        Transaction tx = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            tx = session.beginTransaction();
            Long id = (Long) session.save(up);
            HibernateUtil.commit(tx);
            log.debug("create: {}", id);
            return id;
        } catch (HibernateException e) {
            HibernateUtil.rollback(tx);
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }
    }

    /**
     * Update
     */
    public static void update(Profile up) throws DatabaseException {
        log.debug("update({})", up);
        Session session = null;
        Transaction tx = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            tx = session.beginTransaction();
            session.update(up);
            HibernateUtil.commit(tx);
        } catch (HibernateException e) {
            HibernateUtil.rollback(tx);
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }

        log.debug("update: void");
    }

    /**
     * Delete
     */
    public static void delete(long upId) throws DatabaseException {
        log.debug("delete({})", upId);
        Session session = null;
        Transaction tx = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            tx = session.beginTransaction();
            Profile up = (Profile) session.load(Profile.class, upId);
            session.delete(up);
            HibernateUtil.commit(tx);
        } catch (HibernateException e) {
            HibernateUtil.rollback(tx);
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }

        log.debug("delete: void");
    }

    /**
     * Find by pk
     */
    public static Profile findByPk(long upId) throws DatabaseException {
        log.debug("findByPk({})", upId);
        String qs = "from Profile prf where prf.id=:id";
        Session session = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            Query q = session.createQuery(qs);
            q.setLong("id", upId);
            Profile ret = (Profile) q.setMaxResults(1).uniqueResult();
            log.debug("findByPk: {}", ret);
            return ret;
        } catch (HibernateException e) {
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }
    }

    /**
     * Find by pk
     */
    @SuppressWarnings("unchecked")
    public static List<Profile> findAll(boolean filterByActive) throws DatabaseException {
        log.debug("findAll()");
        String qs = "from Profile prf " + (filterByActive ? "where prf.active=:active" : "");
        Session session = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            Query q = session.createQuery(qs);

            if (filterByActive) {
                q.setBoolean("active", true);
            }

            List<Profile> ret = q.list();
            log.debug("findAll: {}", ret);
            return ret;
        } catch (HibernateException e) {
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }
    }

    /**
     * Find by user
     */
    public static Profile findByUser(String user) throws DatabaseException {
        log.debug("findByUser({})", user);
        String qs = "select profile from UserConfig uc where uc.user=:user";
        Session session = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            Query q = session.createQuery(qs);
            q.setString("user", user);
            Profile ret = (Profile) q.setMaxResults(1).uniqueResult();
            log.debug("findByUser: {}", ret);
            return ret;
        } catch (HibernateException e) {
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }
    }
}