Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.banda.truckmanagementmodel.services.crud.Impl; import com.banda.truckmanagementmodel.model.vehicles.container.VentilatedContainer; import com.banda.truckmanagementmodel.services.crud.VentilatedContainerCrudService; import java.util.List; import org.springframework.transaction.annotation.Propagation; import org.springframework.transaction.annotation.Transactional; /** * * @author itsbryan */ public class VentilatedContainerCrudServiceImpl implements VentilatedContainerCrudService { @Override @Transactional(propagation = Propagation.SUPPORTS) public VentilatedContainer find(String s) { return null; } @Override @Transactional(propagation = Propagation.MANDATORY) public VentilatedContainer persist(VentilatedContainer entity) { return null; } @Override @Transactional(propagation = Propagation.REQUIRES_NEW) public VentilatedContainer merge(VentilatedContainer entity) { return null; } @Override @Transactional(propagation = Propagation.REQUIRED) public VentilatedContainer remove(VentilatedContainer entity) { return null; } @Override @Transactional(propagation = Propagation.NOT_SUPPORTED) public List<VentilatedContainer> findAll() { return null; } }