All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.web.data.dao.impl.WebThemeDaoImpl Maven / Gradle / Ivy

package com.haoxuer.discover.web.data.dao.impl;

import com.haoxuer.discover.data.core.CriteriaDaoImpl;
import com.haoxuer.discover.web.data.dao.WebThemeDao;
import com.haoxuer.discover.web.data.entity.WebTheme;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;

/**
 * Created by imake on 2017年08月30日10:16:29.
 */
@Repository

public class WebThemeDaoImpl extends CriteriaDaoImpl implements WebThemeDao {

  @Override
  public WebTheme findById(String id) {
    if (id == null) {
      return null;
    }
    return get(id);
  }

  @Override
  public WebTheme save(WebTheme bean) {

    getSession().save(bean);


    return bean;
  }

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

  @Override
  protected Class getEntityClass() {
    return WebTheme.class;
  }

  @Autowired
  public void setSuperSessionFactory(SessionFactory sessionFactory) {
    super.setSessionFactory(sessionFactory);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy