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.tracy.immutable.service.crud.Impl; import com.tracy.immutable.model.salary.Fees; import com.tracy.immutable.service.crud.FeesCrudService; import java.util.List; import org.springframework.transaction.annotation.Propagation; import org.springframework.transaction.annotation.Transactional; /** * * @author student */ public class FeesCrudServiceImpl implements FeesCrudService { @Override @Transactional(propagation = Propagation.SUPPORTS) public Fees find(String s) { return null; } @Override @Transactional(propagation = Propagation.MANDATORY) public Fees persist(Fees entity) { return null; } @Override @Transactional(propagation = Propagation.REQUIRES_NEW) public Fees merge(Fees entity) { return null; } @Override @Transactional(propagation = Propagation.REQUIRED) public Fees remove(Fees entity) { return null; } @Override @Transactional(propagation = Propagation.NOT_SUPPORTED) public List<Fees> findAll() { return null; } }