blob: 2b723a85452aa0f00226aa4b3493e888a599d136 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.fineract.portfolio.interestratechart.service;
import java.util.LinkedHashMap;
import java.util.Locale;
import java.util.Map;
import org.apache.fineract.infrastructure.core.api.JsonCommand;
import org.apache.fineract.infrastructure.core.data.CommandProcessingResult;
import org.apache.fineract.infrastructure.core.data.CommandProcessingResultBuilder;
import org.apache.fineract.infrastructure.security.service.PlatformSecurityContext;
import org.apache.fineract.portfolio.interestratechart.data.InterestRateChartRepositoryWrapper;
import org.apache.fineract.portfolio.interestratechart.data.InterestRateChartSlabDataValidator;
import org.apache.fineract.portfolio.interestratechart.data.InterestRateChartSlabRepository;
import org.apache.fineract.portfolio.interestratechart.domain.InterestRateChartSlab;
import org.apache.fineract.portfolio.savings.domain.SavingsProductRepository;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service
public class InterestRateChartSlabWritePlatformServiceJpaRepositoryImpl implements InterestRateChartSlabWritePlatformService {
@SuppressWarnings("unused")
private final static Logger logger = LoggerFactory.getLogger(InterestRateChartSlabWritePlatformServiceJpaRepositoryImpl.class);
@SuppressWarnings("unused")
private final PlatformSecurityContext context;
private final InterestRateChartSlabDataValidator interestRateChartSlabDataValidator;
@SuppressWarnings("unused")
private final InterestRateChartAssembler interestRateChartAssembler;
private final InterestRateChartSlabAssembler interestRateChartSlabAssembler;
@SuppressWarnings("unused")
private final InterestRateChartRepositoryWrapper interestRateChartRepository;
private final InterestRateChartSlabRepository chartSlabRepository;
@SuppressWarnings("unused")
private final SavingsProductRepository savingsProductRepository;
@Autowired
public InterestRateChartSlabWritePlatformServiceJpaRepositoryImpl(PlatformSecurityContext context,
final InterestRateChartSlabDataValidator interestRateChartSlabDataValidator,
final InterestRateChartAssembler interestRateChartAssembler,
final InterestRateChartRepositoryWrapper interestRateChartRepository, final SavingsProductRepository savingsProductRepository,
final InterestRateChartSlabRepository chartSlabRepository,
final InterestRateChartSlabAssembler interestRateChartSlabAssembler) {
this.context = context;
this.interestRateChartSlabDataValidator = interestRateChartSlabDataValidator;
this.interestRateChartAssembler = interestRateChartAssembler;
this.interestRateChartRepository = interestRateChartRepository;
this.savingsProductRepository = savingsProductRepository;
this.chartSlabRepository = chartSlabRepository;
this.interestRateChartSlabAssembler = interestRateChartSlabAssembler;
}
@Override
@Transactional
public CommandProcessingResult create(JsonCommand command) {
this.interestRateChartSlabDataValidator.validateCreate(command.json());
final InterestRateChartSlab interestRateChartSlab = this.interestRateChartSlabAssembler.assembleFrom(command);
this.chartSlabRepository.save(interestRateChartSlab);
final Long interestRateChartId = interestRateChartSlab.getId();
return new CommandProcessingResultBuilder() //
.withCommandId(command.commandId()) //
.withEntityId(interestRateChartId) //
.build();
}
@Override
@Transactional
public CommandProcessingResult update(Long chartSlabId, Long interestRateChartId, JsonCommand command) {
this.interestRateChartSlabDataValidator.validateUpdate(command.json());
final Map<String, Object> changes = new LinkedHashMap<>(20);
final InterestRateChartSlab updateChartSlabs = this.interestRateChartSlabAssembler.assembleFrom(chartSlabId,
interestRateChartId);
final Locale locale = command.extractLocale();
updateChartSlabs.update(command, changes,locale);
this.chartSlabRepository.saveAndFlush(updateChartSlabs);
return new CommandProcessingResultBuilder() //
.withCommandId(command.commandId()) //
.withEntityId(interestRateChartId) //
.with(changes).build();
}
@Override
@Transactional
public CommandProcessingResult deleteChartSlab(Long chartSlabId, Long interestRateChartId) {
final InterestRateChartSlab deleteChartSlabs = this.interestRateChartSlabAssembler.assembleFrom(chartSlabId,
interestRateChartId);
this.chartSlabRepository.delete(deleteChartSlabs);
return new CommandProcessingResultBuilder() //
.withEntityId(chartSlabId) //
.build();
}
}