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.immutabledomain.phonestore.services.crud.Impl; import com.immutabledomain.phonestore.model.pkgContract.TwoYear; import com.immutabledomain.phonestore.services.crud.TwoYearCrudService; import java.util.List; import org.springframework.transaction.annotation.Propagation; import org.springframework.transaction.annotation.Transactional; /** * * @author Tristan */ public class TwoYearCrudServiceImpl implements TwoYearCrudService { @Override @Transactional(propagation = Propagation.SUPPORTS) public TwoYear find(String s) { return null; } @Override @Transactional(propagation = Propagation.MANDATORY) public TwoYear persist(TwoYear entity) { return null; } @Override @Transactional(propagation = Propagation.REQUIRES_NEW) public TwoYear merge(TwoYear entity) { return null; } @Override @Transactional(propagation = Propagation.REQUIRED) public TwoYear remove(TwoYear entity) { return null; } @Override @Transactional(propagation = Propagation.NOT_SUPPORTED) public List<TwoYear> findAll() { return null; } }