Package com.jeecms.core.dao.impl

Source Code of com.jeecms.core.dao.impl.DbTplDaoImpl

package com.jeecms.core.dao.impl;

import java.util.List;

import org.apache.commons.lang.StringUtils;
import org.springframework.stereotype.Repository;

import com.jeecms.common.hibernate3.HibernateBaseDao;
import com.jeecms.core.dao.DbTplDao;
import com.jeecms.core.entity.DbTpl;

@Repository
public class DbTplDaoImpl extends HibernateBaseDao<DbTpl, String> implements
    DbTplDao {
  @SuppressWarnings("unchecked")
  public List<DbTpl> getStartWith(String prefix) {
    StringUtils.replace(prefix, "_", "\\_");
    prefix = prefix + "%";
    String hql = "from DbTpl bean where bean.id like ? order by bean.id";
    return find(hql, prefix);
  }

  @SuppressWarnings("unchecked")
  public List<DbTpl> getChild(String path, boolean isDirectory) {
    StringUtils.replace(path, "_", "\\_");
    path = path + "/%";
    String notLike = path + "/%";
    String hql = "from DbTpl bean"
        + " where bean.id like ? and bean.id not like ?"
        + " and bean.directory=? order by bean.id";
    return find(hql, path, notLike, isDirectory);
  }

  public DbTpl findById(String id) {
    DbTpl entity = get(id);
    return entity;
  }

  public DbTpl save(DbTpl bean) {
    getSession().save(bean);
    return bean;
  }

  public DbTpl deleteById(String id) {
    DbTpl entity = super.get(id);
    if (entity != null) {
      getSession().delete(entity);
    }
    return entity;
  }

  @Override
  protected Class<DbTpl> getEntityClass() {
    return DbTpl.class;
  }
}
TOP

Related Classes of com.jeecms.core.dao.impl.DbTplDaoImpl

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.