AccessionSourceServiceImpl.java

/*
 * Copyright 2020 Global Crop Diversity Trust
 *
 * 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 org.gringlobal.service.impl;

import lombok.extern.slf4j.Slf4j;
import org.gringlobal.model.AccessionSource;
import org.gringlobal.persistence.AccessionSourceRepository;
import org.gringlobal.service.AccessionSourceService;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.validation.annotation.Validated;

/**
 * @author Maxym Borodenko
 */
@Service
@Transactional(readOnly = true)
@Validated
@Slf4j
public class AccessionSourceServiceImpl extends CRUDService2Impl<AccessionSource, AccessionSourceRepository> implements AccessionSourceService {

	@Override
	@Transactional
	@PreAuthorize("@ggceSec.actionAllowed('PassportData', 'CREATE', #source.accession.site)")
	public AccessionSource create(AccessionSource source) {
		log.debug("Create AccessionSource. Input data {}", source);
		AccessionSource entity = new AccessionSource();
		entity.apply(source);

		AccessionSource saved = get(repository.save(entity));
		saved.lazyLoad();

		return saved;
	}

	@Override
	@Transactional
	@PreAuthorize("@ggceSec.actionAllowed('PassportData', 'WRITE', #target.accession.site)")
	public AccessionSource update(AccessionSource input, AccessionSource target) {
		log.debug("Update AccessionSource. Input data {}", input);
		target.apply(input);

		AccessionSource saved = get(repository.save(target));
		saved.lazyLoad();
		return saved;
	}

	@Override
	@Transactional
	@PreAuthorize("@ggceSec.actionAllowed('PassportData', 'WRITE', #target.accession.site)")
	public AccessionSource updateFast(AccessionSource updated, AccessionSource target) {
		target.apply(updated);
		return repository.save(target);
	}

	@Override
	@Transactional
	@PreAuthorize("@ggceSec.actionAllowed('PassportData', 'DELETE', #entity.accession.site)")
	public AccessionSource remove(AccessionSource entity) {
		return super.remove(entity);
	}
}