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 fr.esecure.banking.impl; import fr.esecure.banking.modele.client.entities.Adresse; import fr.esecure.banking.service.IEsecureDaoAdresse; import java.util.List; import org.springframework.stereotype.Repository; import org.springframework.transaction.annotation.Transactional; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; /** * * @author SNIANG */ @Transactional @Repository public class IEsecureDaoAdresseImpl implements IEsecureDaoAdresse { @PersistenceContext EntityManager em; public <S extends Adresse> S save(S s) { //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. return em.merge(s); } public <S extends Adresse> Iterable<S> save(Iterable<S> itrbl) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } public Adresse findOne(Long id) { //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. return em.find(Adresse.class, id); } public boolean exists(Long id) { // throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. return (em.find(Adresse.class, id).getIdAdresse() > 0); } public Iterable<Adresse> findAll() { //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. return em.createQuery("Select * from transaction").getResultList(); } public Iterable<Adresse> findAll(Iterable<Long> itrbl) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } public long count() { // throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. return em.createNamedQuery("Select * from transaction").getMaxResults(); } public void delete(Long id) { // throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. em.remove(em.find(Adresse.class, id)); } public void delete(Adresse t) { //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. em.remove(t); } public void delete(Iterable<? extends Adresse> itrbl) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } public void deleteAll() { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } public List<Adresse> getAdresseByClientId(Long idClient) { return em.createNamedQuery(Adresse.FIND_ADRESSE_BY_CUSTOMER_ID).setParameter("idClient", idClient) .getResultList(); } }