view src/main/java/de/intevation/lada/data/ReadOnlyRepository.java @ 182:a2e04ab2cd44

Use the new filter and query builder and have authentication for LProbeInfo objects.
author Raimund Renkert <rrenkert@intevation.de>
date Thu, 27 Jun 2013 15:03:18 +0200
parents 42e0085692df
children 253160854d79
line wrap: on
line source
package de.intevation.lada.data;

import javax.enterprise.context.RequestScoped;
import javax.inject.Named;

import de.intevation.lada.rest.Response;

@RequestScoped
@Named("readonlyrepository")
public class ReadOnlyRepository
extends Repository
{

    @Override
    public Response create(Object object) {
        return null;
    }

    @Override
    public Response update(Object object) {
        return null;
    }
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)