AccessionIprServiceImpl.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.AccessionIpr;
import org.gringlobal.persistence.AccessionIprRepository;
import org.gringlobal.service.AccessionIprService;
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 AccessionIprServiceImpl extends CRUDService2Impl<AccessionIpr, AccessionIprRepository> implements AccessionIprService {
@Override
@Transactional
@PreAuthorize("@ggceSec.actionAllowed('PassportData', 'CREATE', #source.accession.site)")
public AccessionIpr create(AccessionIpr source) {
log.debug("Create AccessionIpr. Input data {}", source);
AccessionIpr ipr = new AccessionIpr();
ipr.apply(source);
AccessionIpr saved = repository.save(ipr);
saved.lazyLoad();
return saved;
}
@Override
@Transactional
@PreAuthorize("@ggceSec.actionAllowed('PassportData', 'WRITE', #target.accession.site)")
public AccessionIpr update(AccessionIpr input, AccessionIpr target) {
log.debug("Update AccessionIpr. Input data {}", input);
target.apply(input);
AccessionIpr saved = repository.save(target);
saved.lazyLoad();
return saved;
}
@Override
@Transactional
@PreAuthorize("@ggceSec.actionAllowed('PassportData', 'WRITE', #target.accession.site)")
public AccessionIpr updateFast(AccessionIpr updated, AccessionIpr target) {
target.apply(updated);
return repository.save(target);
}
@Override
@Transactional
@PreAuthorize("@ggceSec.actionAllowed('PassportData', 'DELETE', #entity.accession.site)")
public AccessionIpr remove(AccessionIpr entity) {
return super.remove(entity);
}
}