view src/main/java/de/intevation/lada/rest/SMessMethodeService.java @ 220:f0482fa04e2b

Code documentation and minor code style.
author Raimund Renkert <rrenkert@intevation.de>
date Thu, 04 Jul 2013 13:45:40 +0200
parents feedf35fddcf
children d8a3d188046f
line wrap: on
line source
package de.intevation.lada.rest;

import java.util.ArrayList;

import javax.enterprise.context.RequestScoped;
import javax.inject.Inject;
import javax.inject.Named;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.HttpHeaders;

import de.intevation.lada.authentication.Authentication;
import de.intevation.lada.authentication.AuthenticationException;
import de.intevation.lada.data.Repository;
import de.intevation.lada.model.SMessMethode;

/**
 * This class produces a RESTful service to read SMessMethode objects.
 * 
 * @author <a href="mailto:rrenkert@intevation.de">Raimund Renkert</a>
 */
@Path("/messmethode")
@RequestScoped
public class SMessMethodeService
{
    /**
     * The Repository for SMessMethode.
     */
    @Inject
    @Named("readonlyrepository")
    private Repository repository;

    /**
     * The authorization module.
     */
    @Inject
    @Named("ldapauth")
    private Authentication authentication;

    /**
     * Request all SMessMethode 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(SMessMethode.class);
            }
            return new Response(false, 699, new ArrayList<SMessMethode>());
        }
        catch(AuthenticationException ae) {
            return new Response(false, 699, new ArrayList<SMessMethode>());
        }
    }

    /**
     * Request a SMessMethode object via its id.
     *
     * @param id The object id.
     * @param headers   The HTTP header containing authorization information.
     * @return Response object.
     */
    @GET
    @Path("/{id:[0-9][0-9]*}")
    @Produces("text/json")
    public Response findById(
        @PathParam("id") String id,
        @Context HttpHeaders headers) {
        try {
            if (authentication.isAuthorizedUser(headers)) {
                return repository.findById(SMessMethode.class, id);
            }
            return new Response(false, 699, new ArrayList<SMessMethode>());
        }
        catch(AuthenticationException ae) {
            return new Response(false, 699, new ArrayList<SMessMethode>());
        }
    }
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)