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

com.quhaodian.web.data.service.impl.WebThemeServiceImpl Maven / Gradle / Ivy

package com.quhaodian.web.data.service.impl;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import com.quhaodian.data.core.Updater;
import com.quhaodian.web.data.dao.WebThemeDao;
import com.quhaodian.web.data.entity.WebTheme;
import com.quhaodian.web.data.service.WebThemeService;

import com.quhaodian.data.page.Filter;
import com.quhaodian.data.page.Order;
import com.quhaodian.data.page.Page;
import com.quhaodian.data.page.Pageable;
import java.util.List;

import com.quhaodian.data.utils.FilterUtils;
import org.springframework.context.annotation.Scope;


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


@Scope("prototype")
@Service
@Transactional
public class WebThemeServiceImpl implements WebThemeService {

	private WebThemeDao dao;


	@Override
	@Transactional(readOnly = true)
	public WebTheme findById(String id) {
		return dao.findById(id);
	}

	@Override
	public WebTheme key(String name) {
		WebTheme theme=dao.findById(name);
		if (theme==null){
			theme=new WebTheme();
			theme.setId(name);
			dao.save(theme);
		}
		return theme;
	}


	@Override
    @Transactional
	public WebTheme save(WebTheme bean) {
		dao.save(bean);
		return bean;
	}

	@Override
    @Transactional
	public WebTheme update(WebTheme bean) {
		Updater updater = new Updater(bean);
		return dao.updateByUpdater(updater);
	}

	@Override
    @Transactional
	public WebTheme deleteById(String id) {
		WebTheme bean = dao.findById(id);
        dao.deleteById(id);
		return bean;
	}

	@Override
    @Transactional	
	public WebTheme[] deleteByIds(String[] ids) {
		WebTheme[] beans = new WebTheme[ids.length];
		for (int i = 0,len = ids.length; i < len; i++) {
			beans[i] = deleteById(ids[i]);
		}
		return beans;
	}


	@Autowired
	public void setDao(WebThemeDao dao) {
		this.dao = dao;
	}

	@Override
    public Page page(Pageable pageable){
         return dao.page(pageable);
    }


    @Override
	public Page page(Pageable pageable, Object search) {
		List filters=	FilterUtils.getFilters(search);
		if (filters!=null) {
			pageable.getFilters().addAll(filters);
		}
		return dao.page(pageable);
	}

    @Override
    public List list(int first, Integer size, List filters, List orders) {
        return dao.list(first,size,filters,orders);}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy