Class StopResource
- java.lang.Object
-
- org.onebusaway.watchdog.api.MetricResource
-
- org.onebusaway.watchdog.api.realtime.StopResource
-
@Path("/metric/realtime/stop") public class StopResource extends MetricResource
-
-
Field Summary
-
Fields inherited from class org.onebusaway.watchdog.api.MetricResource
_configuration, _log, _mapper
-
-
Constructor Summary
Constructors Constructor Description StopResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.ResponsegetMatchedStopCount(String agencyId, String feedId)javax.ws.rs.core.ResponsegetUnmatchedStopIds(String agencyId, String feedId)javax.ws.rs.core.ResponsegetUnmatchedStops(String agencyId, String feedId)-
Methods inherited from class org.onebusaway.watchdog.api.MetricResource
error, error, getAddedTripIdCt, getCancelledTripIdCt, getDataSources, getInvalidLocation, getLocationTotal, getMatchedStopCt, getScheduledTrips, getScheduledTrips, getTDS, getTotalRecordCount, getUnmatchedStopCt, getUnmatchedTripIdCt, getValidRealtimeTripIds, ok, setMetricConfiguration
-
-
-
-
Method Detail
-
getMatchedStopCount
@Path("{agencyId}/matched") @GET @Produces("application/json") public javax.ws.rs.core.Response getMatchedStopCount(@PathParam("agencyId") String agencyId, @QueryParam("feedId") String feedId)
-
getUnmatchedStops
@Path("{agencyId}/unmatched") @GET @Produces("application/json") public javax.ws.rs.core.Response getUnmatchedStops(@PathParam("agencyId") String agencyId, @QueryParam("feedId") String feedId)
-
-