view src/main/java/de/intevation/lada/data/Repository.java @ 213:8fdb699405aa

Refactored repositories to avoid race conditions.
author Raimund Renkert <rrenkert@intevation.de>
date Wed, 03 Jul 2013 15:54:00 +0200
parents 253160854d79
children ea4d2d685f32
line wrap: on
line source
package de.intevation.lada.data;

import javax.persistence.EntityManager;
import javax.persistence.criteria.CriteriaQuery;

import de.intevation.lada.rest.Response;

/**
 * This generic Container is an interface to request and select Data
 * obejcts from the connected database.
 * 
 * @author <a href="mailto:rrenkert@intevation.de">Raimund Renkert</a>
 */
public interface Repository
{
    public Response create(Object object);

    public Response update(Object object);

    public Response delete(Object object);

    public <T> Response filter(CriteriaQuery<T> filter);

    public <T> Response findAll(Class<T> clazz);

    public <T> Response findById(Class<T> clazz, String id);

    public EntityManager getEntityManager();
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)