com.oakhole.channel.service.ChannelService.java Source code

Java tutorial

Introduction

Here is the source code for com.oakhole.channel.service.ChannelService.java

Source

/*
 * Copyright (c) 2013-2014. Powered by http://oakhole.com .
 *
 * 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.oakhole.channel.service;

import com.oakhole.channel.dao.ChannelDao;
import com.oakhole.channel.entity.Channel;
import com.oakhole.utils.DynamicSpecifications;
import com.oakhole.utils.SearchFilter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.javasimon.aop.Monitored;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Sort;
import org.springframework.data.jpa.domain.Specification;
import org.springframework.stereotype.Service;

import javax.transaction.Transactional;
import java.util.List;
import java.util.Map;

/**
 * @author Oakhole
 * @since 1.0
 */
@Service
@Transactional
@Monitored
public class ChannelService {

    private static Logger logger = LoggerFactory.getLogger(ChannelService.class);

    @Autowired
    private ChannelDao channelDao;

    public void save(Channel channel) {
        this.channelDao.save(channel);
    }

    public Channel get(Long id) {
        return this.channelDao.findOne(id);
    }

    public void remove(Channel channel) {
        channel.setDeleted(true);
        this.channelDao.save(channel);
    }

    public Page<Channel> findAll(Map<String, Object> searchParams, int pageNumber, int pageSize,
            String sortDirection, String sortBy) {
        Map<String, SearchFilter> filters = SearchFilter.parse(searchParams);
        Specification<Channel> spec = DynamicSpecifications.bySearchFilter(filters.values(), Channel.class);
        Sort sort = new Sort("ASC".equals(sortDirection) ? Sort.Direction.ASC : Sort.Direction.DESC, sortBy);
        PageRequest pageRequest = new PageRequest(pageNumber, pageSize, sort);
        Page<Channel> channelList = channelDao.findAll(spec, pageRequest);
        return channelList;
    }
}