Package org.jasig.portal.channel.dao.jpa

Source Code of org.jasig.portal.channel.dao.jpa.JpaChannelTypeDao

/**
* Licensed to Jasig under one or more contributor license
* agreements. See the NOTICE file distributed with this work
* for additional information regarding copyright ownership.
* Jasig licenses this file to you 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 org.jasig.portal.channel.dao.jpa;

import java.util.List;

import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.Query;

import org.apache.commons.lang.Validate;
import org.jasig.portal.channel.IChannelType;
import org.jasig.portal.channel.dao.IChannelTypeDao;
import org.springframework.dao.support.DataAccessUtils;
import org.springframework.transaction.annotation.Transactional;

/**
* JPA/Hibernate implementation of IChannelTypeDao.  This DAO handles
* channel types and is not yet integrated with the channel definition persistence
* code.
*
* @author Jen Bourey, jbourey@unicon.net
* @revision $Revision: 19776 $
*/
public class JpaChannelTypeDao implements IChannelTypeDao {

    private static final String FIND_ALL_CHAN_TYPE = "from ChannelTypeImpl channel";
    private static final String FIND_CHAN_TYPE_BY_NAME = "from ChannelTypeImpl type where type.name = :name";
   
    private static final String FIND_CHAN_TYPE_BY_NAME_CACHE_REGION = ChannelTypeImpl.class.getName() + ".query.FIND_CHAN_TYPE_BY_NAME";
    private static final String FIND_ALL_CHAN_TYPE_CACHE_REGION = ChannelTypeImpl.class.getName() + ".query.FIND_ALL_CHAN_TYPE";
   
   
    private EntityManager entityManager;
   
    /**
     * @param entityManager the entityManager to set
     */
    @PersistenceContext
    public void setEntityManager(EntityManager entityManager) {
        this.entityManager = entityManager;
    }

   
    // Public API methods
   
    /*
     * (non-Javadoc)
     * @see org.jasig.portal.channel.dao.IChannelTypeDao#deleteChannelType(org.jasig.portal.channel.IChannelType)
     */
    @Transactional
  public void deleteChannelType(IChannelType type) {
        Validate.notNull(type, "definition can not be null");
       
        final IChannelType persistentChanneltype;
        if (this.entityManager.contains(type)) {
            persistentChanneltype = type;
        }
        else {
            persistentChanneltype = this.entityManager.merge(type);
        }
      this.entityManager.remove(persistentChanneltype);
  }

    /* (non-Javadoc)
     * @see org.jasig.portal.channel.dao.IChannelTypeDao#createChannelType(java.lang.String, java.lang.String, java.lang.String)
     */
    @Transactional
    public IChannelType createChannelType(String name, String clazz, String cpdUri) {
        Validate.notEmpty(name, "name can not be null");
        Validate.notEmpty(clazz, "clazz can not be null");
        Validate.notEmpty(cpdUri, "cpdUri can not be null");
       
        final ChannelTypeImpl channelType = new ChannelTypeImpl(name, clazz, cpdUri);
       
        this.entityManager.persist(channelType);
       
        return channelType;
    }

    /*
     * (non-Javadoc)
     * @see org.jasig.portal.channel.dao.IChannelTypeDao#getChannelType(int)
     */
  public IChannelType getChannelType(int id) {
    return this.entityManager.find(ChannelTypeImpl.class, id);
  }

  /*
   * (non-Javadoc)
   * @see org.jasig.portal.channel.dao.IChannelTypeDao#getChannelType(java.lang.String)
   */
    @SuppressWarnings("unchecked")
  public IChannelType getChannelType(String name) {
        final Query query = this.entityManager.createQuery(FIND_CHAN_TYPE_BY_NAME);
        query.setParameter("name", name);
        query.setHint("org.hibernate.cacheable", true);
        query.setHint("org.hibernate.cacheRegion", FIND_CHAN_TYPE_BY_NAME_CACHE_REGION);
        query.setMaxResults(1);
       
        final List<IChannelType> channelTypes = query.getResultList();
        IChannelType type = (IChannelType) DataAccessUtils.uniqueResult(channelTypes);
    return type;
  }

  /*
   * (non-Javadoc)
   * @see org.jasig.portal.channel.dao.IChannelTypeDao#getChannelTypes()
   */
    @SuppressWarnings("unchecked")
  public List<IChannelType> getChannelTypes() {
        final Query query = this.entityManager.createQuery(FIND_ALL_CHAN_TYPE);
        query.setHint("org.hibernate.cacheable", true);
        query.setHint("org.hibernate.cacheRegion", FIND_ALL_CHAN_TYPE_CACHE_REGION);
        final List<IChannelType> channelTypes = query.getResultList();
    return channelTypes;
  }

  /*
   * (non-Javadoc)
   * @see org.jasig.portal.channel.dao.IChannelTypeDao#saveChannelType(org.jasig.portal.channel.IChannelType)
   */
  @Transactional
  public IChannelType updateChannelType(IChannelType type) {
        Validate.notNull(type, "type can not be null");
       
        this.entityManager.persist(type);
       
        return type;
  }

}
TOP

Related Classes of org.jasig.portal.channel.dao.jpa.JpaChannelTypeDao

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.