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

Java tutorial

Introduction

Here is the source code for com.oakhole.channel.service.ChannelGroupService.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.ChannelGroupDao;
import com.oakhole.channel.entity.ChannelGroup;
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 ChannelGroupService {

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

    @Autowired
    private ChannelGroupDao channelGroupDao;

    public void save(ChannelGroup channelGroup) {
        this.channelGroupDao.save(channelGroup);
    }

    public ChannelGroup get(Long id) {
        return this.channelGroupDao.findOne(id);
    }

    public void remove(ChannelGroup channelGroup) {
        channelGroup.setDeleted(true);
        this.channelGroupDao.save(channelGroup);
    }

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