view src/main/java/de/intevation/lada/rest/SProbenzusatzService.java @ 165:917ee8501517

Fixed URLs of services.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Wed, 19 Jun 2013 15:17:43 +0200
parents c85743232d75
children 832e67663fd9
line wrap: on
line source
package de.intevation.lada.rest;

import java.util.logging.Logger;

import javax.faces.bean.RequestScoped;
import javax.inject.Inject;
import javax.inject.Named;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;

import de.intevation.lada.data.Repository;
import de.intevation.lada.model.SProbenZusatz;

/**
 * This class produces a RESTful service to read the contents of SDatenbasis table.
 * 
 * @author <a href="mailto:rrenkert@intevation.de">Raimund Renkert</a>
 */
@Path("/probenzusatz")
@RequestScoped
public class SProbenzusatzService
{
    /**
     * The Repository for SDatenbasis.
     */
    @Inject
    @Named("readonlyrepository")
    private Repository repository;

    /**
     * The logger for this class
     */
    @Inject
    private Logger logger;

    /**
     * Request all SDatenbasis objects.
     *
     * @return JSON Object via Rest service
     */
    @GET
    @Produces("text/json")
    public Response findAll() {
        return repository.findAll(SProbenZusatz.class);
    }
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)