view src/main/java/de/intevation/service/LProbeService.java @ 24:dc3bfcc5f717

Added functions to delete and create (stub) proben items. Currently are not working because of violations of foreign key constraits in the underlying database scheme.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Fri, 26 Apr 2013 18:06:21 +0200
parents
children
line wrap: on
line source
package de.intevation.service;

import java.util.logging.Logger;

import javax.ejb.Stateless;
import javax.ejb.TransactionAttribute;
import javax.ejb.TransactionAttributeType;
import javax.inject.Inject;
import javax.persistence.EntityManager;

import de.intevation.model.LProbe;

@Stateless
public class LProbeService {

    @Inject
    private Logger log;

    @Inject
    private EntityManager em;

//    @Inject
//    private Event<Member> memberEventSrc;

    @TransactionAttribute(TransactionAttributeType.REQUIRED)
    public void delete(String id) throws Exception {
    	LProbe probe = em.find(LProbe.class, id);
        log.info("Deleting " + probe.getProbeId());
        em.remove(probe);
        //memberEventSrc.fire(member);
    }
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)