Package com.stormpath.tooter.model.dao

Source Code of com.stormpath.tooter.model.dao.DefaultCustomerDao

/*
* Copyright 2012 Stormpath, Inc. and contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.stormpath.tooter.model.dao;

import com.stormpath.tooter.model.User;
import org.hibernate.Criteria;
import org.hibernate.SessionFactory;
import org.hibernate.criterion.Restrictions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;

import java.util.ArrayList;
import java.util.List;

/**
* @author Elder Crisostomo
*/
@Repository
public class DefaultCustomerDao extends BaseHibernateDao implements CustomerDao {


    @Override
    public User getCustomerByUserName(String userName) throws Exception {

        Criteria criteria = getSession().createCriteria(User.class);
        criteria.add(Restrictions.eq("userName", userName));
        List<?> list = new ArrayList<Object>();
        list.addAll(criteria.list());

        User customer = null;

        if (!list.isEmpty()) {
            for (Object obj : list) {
                if (obj != null) {
                    customer = (User) obj;
                    break;
                }
            }
        }
        return customer;
    }

    @Override
    public User saveCustomer(User customer) throws Exception {

        save(customer);
        return customer;
    }

    @Override
    public User updateCustomer(User customer) throws Exception {

        update(customer);

        return customer;
    }

    @Autowired
    public void init(SessionFactory sessionFactory) {
        setSessionFactory(sessionFactory);
    }
}
TOP

Related Classes of com.stormpath.tooter.model.dao.DefaultCustomerDao

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.