Mercurial > lada > lada-server
view src/main/java/de/intevation/lada/rest/SProbenzusatzService.java @ 242:04021a8122ba
merged.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Mon, 15 Jul 2013 10:47:56 +0200 |
parents | d8a3d188046f |
children | 183f8116d9a6 |
line wrap: on
line source
package de.intevation.lada.rest; import java.util.ArrayList; 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 javax.ws.rs.core.Context; import javax.ws.rs.core.HttpHeaders; import de.intevation.lada.auth.Authentication; import de.intevation.lada.auth.AuthenticationException; import de.intevation.lada.data.Repository; import de.intevation.lada.model.SProbenZusatz; /** * This class produces a RESTful service to read SProbenzusatz objects. * * @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 authorization module. */ @Inject @Named("ldapauth") private Authentication authentication; /** * The logger for this class */ @Inject private Logger logger; /** * Request all SProbenzusatz objects. * * @param headers The HTTP header containing authorization information. * @return Response object. */ @GET @Produces("text/json") public Response findAll(@Context HttpHeaders headers) { try { if (authentication.isAuthorizedUser(headers)) { return repository.findAll(SProbenZusatz.class); } return new Response(false, 699, new ArrayList<SProbenZusatz>()); } catch(AuthenticationException ae) { return new Response(false, 699, new ArrayList<SProbenZusatz>()); } } }