Package org.onebusaway.admin.service.api
Class AlertsResource
- java.lang.Object
-
- org.onebusaway.admin.service.api.AlertsResource
-
@Component @Path("/alerts") public class AlertsResource extends Object
-
-
Constructor Summary
Constructors Constructor Description AlertsResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.Response
get(String agencyId)
javax.ws.rs.core.Response
gets(String agencyId)
javax.ws.rs.core.Response
getText(String agencyId)
javax.ws.rs.core.Response
getTexts(String agencyId)
-
-
-
Method Detail
-
get
@Path("/gtfsrt/{agencyId}.pb") @GET @Produces("application/x-google-protobuf") public javax.ws.rs.core.Response get(@PathParam("agencyId") String agencyId)
-
gets
@Path("/service/{agencyId}.pb") @GET @Produces("application/x-google-protobuf") public javax.ws.rs.core.Response gets(@PathParam("agencyId") String agencyId)
-
getText
@GET @Path("/gtfsrt/{agencyId}.pbtext") @Produces("text/plain") public javax.ws.rs.core.Response getText(@PathParam("agencyId") String agencyId)
-
getTexts
@GET @Path("/service/{agencyId}.pbtext") @Produces("text/plain") public javax.ws.rs.core.Response getTexts(@PathParam("agencyId") String agencyId)
-
-