/******************************************************************************* * Copyright (c) 2011 epyx SA. * * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more * details. * * You should have received a copy of the GNU Affero General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. *******************************************************************************/ package ch.windmobile.server.resource; import javax.servlet.http.HttpServletRequest; 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.MediaType; import javax.ws.rs.core.UriInfo; import javax.xml.bind.JAXBElement; import ch.windmobile.server.datasourcemodel.WindMobileDataSource; import ch.windmobile.server.datasourcemodel.xml.ObjectFactory; import ch.windmobile.server.datasourcemodel.xml.StationUpdateTime; import com.sun.jersey.api.core.InjectParam; import com.sun.jersey.spi.resource.Singleton; @Path("/lastupdate") @Singleton public class LastUpdateResource { @InjectParam("dataSource") private WindMobileDataSource dataSource; @Context UriInfo uriInfo; @Context HttpServletRequest request; @GET @Path("{stationId}") @Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON }) public JAXBElement<StationUpdateTime> getLastUpdate(@PathParam("stationId") String stationId) { try { return new ObjectFactory().createLastUpdate(dataSource.getLastUpdate(stationId)); } catch (Exception e) { throw ExceptionHandler.treatException(e, request); } } }