com.oakhole.financial.service.FinancialService.java Source code

Java tutorial

Introduction

Here is the source code for com.oakhole.financial.service.FinancialService.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.financial.service;

import com.oakhole.financial.dao.FinancialDao;
import com.oakhole.financial.entity.Financial;
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 FinancialService {

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

    @Autowired
    private FinancialDao financialDao;

    public void save(Financial financial) {
        this.financialDao.save(financial);
    }

    public Financial get(Long id) {
        return this.financialDao.findOne(id);
    }

    public void remove(Financial financial) {
        financial.setDeleted(true);
        this.financialDao.save(financial);
    }

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