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.sihle.elections2.services.crud.Imp; import com.sihle.elections2.model.Vote; import com.sihle.elections2.services.crud.VoterCrudservice; import java.util.List; import org.springframework.transaction.annotation.Propagation; import org.springframework.transaction.annotation.Transactional; /** * * @author sihle */ public class VoterCrudseviceImp implements VoterCrudservice { @Override @Transactional(propagation = Propagation.SUPPORTS) public Vote find(String id) { return null; } @Override @Transactional(propagation = Propagation.MANDATORY) public Vote persist(Vote entity) { return null; } @Override @Transactional(propagation = Propagation.REQUIRES_NEW) public Vote merge(Vote entity) { return null; } @Override @Transactional(propagation = Propagation.REQUIRED) public Vote remove(Vote entity) { return null; } @Override @Transactional(propagation = Propagation.NOT_SUPPORTED) public List<Vote> findAll() { return null; } }