All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.api.parameter.CRSParameter Maven / Gradle / Ivy

package org.opentripplanner.api.parameter;

import java.io.StringReader;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;

import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;
import javax.ws.rs.ext.Provider;

import org.geotools.referencing.CRS;
import org.opengis.referencing.crs.CoordinateReferenceSystem;

public class CRSParameter {

    public CoordinateReferenceSystem crs = null;

    public CRSParameter (String name) {
        try {
            crs = CRS.decode(name, true);
        } catch (Exception e) {
            throw new WebApplicationException(onError(name, e));
        }
    }

    protected Response onError(String param, Throwable e) {
        return Response.status(Status.BAD_REQUEST).entity(getErrorMessage(param, e)).build();
    }

    protected String getErrorMessage(String param, Throwable e) {
        return String.format("

400 Bad Request

" + "While parsing parameter %s as %s:
%s", param, CoordinateReferenceSystem.class, e.getMessage()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy