AccessionPedigreeServiceImpl.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.AccessionPedigree;
import org.gringlobal.persistence.AccessionPedigreeRepository;
import org.gringlobal.service.AccessionPedigreeService;
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 AccessionPedigreeServiceImpl extends CRUDService2Impl<AccessionPedigree, AccessionPedigreeRepository> implements AccessionPedigreeService {

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

		AccessionPedigree saved = get(repository.save(pedigree));
		saved.lazyLoad();

		return saved;
	}

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

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

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

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