Search in sources :

Example 21 with BeanFactoryV2

use of org.onebusaway.api.model.transit.BeanFactoryV2 in project onebusaway-application-modules by camsys.

the class ApiActionSupport method getBeanFactoryV2.

protected BeanFactoryV2 getBeanFactoryV2() {
    BeanFactoryV2 factory = new BeanFactoryV2(_includeReferences);
    factory.setApplicationKey(_key);
    return factory;
}
Also used : BeanFactoryV2(org.onebusaway.api.model.transit.BeanFactoryV2)

Example 22 with BeanFactoryV2

use of org.onebusaway.api.model.transit.BeanFactoryV2 in project onebusaway-application-modules by camsys.

the class ShapeAction method show.

public DefaultHttpHeaders show() {
    if (hasErrors())
        return setValidationErrorsResponse();
    EncodedPolylineBean shape = _service.getShapeForId(_id);
    if (shape == null)
        return setResourceNotFoundResponse();
    BeanFactoryV2 factory = getBeanFactoryV2();
    return setOkResponse(factory.getResponse(shape));
}
Also used : EncodedPolylineBean(org.onebusaway.geospatial.model.EncodedPolylineBean) BeanFactoryV2(org.onebusaway.api.model.transit.BeanFactoryV2)

Example 23 with BeanFactoryV2

use of org.onebusaway.api.model.transit.BeanFactoryV2 in project onebusaway-application-modules by camsys.

the class ShapeIdsForAgencyAction method show.

public DefaultHttpHeaders show() {
    if (hasErrors())
        return setValidationErrorsResponse();
    if (!isVersion(V2))
        return setUnknownVersionResponse();
    ListBean<String> stopIds = _service.getShapeIdsForAgencyId(_id);
    BeanFactoryV2 factory = getBeanFactoryV2();
    return setOkResponse(factory.getEntityIdsResponse(stopIds));
}
Also used : BeanFactoryV2(org.onebusaway.api.model.transit.BeanFactoryV2)

Example 24 with BeanFactoryV2

use of org.onebusaway.api.model.transit.BeanFactoryV2 in project onebusaway-application-modules by camsys.

the class VehiclesForAgencyAction method show.

public DefaultHttpHeaders show() throws IOException, ServiceException {
    if (!isVersion(V2))
        return setUnknownVersionResponse();
    if (hasErrors())
        return setValidationErrorsResponse();
    long time = SystemTime.currentTimeMillis();
    if (_time != 0)
        time = _time;
    BeanFactoryV2 factory = getBeanFactoryV2();
    try {
        ListBean<VehicleStatusBean> vehicles = _service.getAllVehiclesForAgency(_id, time);
        return setOkResponse(factory.getVehicleStatusResponse(vehicles));
    } catch (OutOfServiceAreaServiceException ex) {
        return setOkResponse(factory.getEmptyList(VehicleStatusV2Bean.class, true));
    }
}
Also used : OutOfServiceAreaServiceException(org.onebusaway.exceptions.OutOfServiceAreaServiceException) BeanFactoryV2(org.onebusaway.api.model.transit.BeanFactoryV2) VehicleStatusBean(org.onebusaway.transit_data.model.VehicleStatusBean)

Aggregations

BeanFactoryV2 (org.onebusaway.api.model.transit.BeanFactoryV2)24 OutOfServiceAreaServiceException (org.onebusaway.exceptions.OutOfServiceAreaServiceException)5 TripDetailsBean (org.onebusaway.transit_data.model.trips.TripDetailsBean)5 TripDetailsInclusionBean (org.onebusaway.transit_data.model.trips.TripDetailsInclusionBean)5 TripDetailsV2Bean (org.onebusaway.api.model.transit.TripDetailsV2Bean)2 VehicleStatusBean (org.onebusaway.transit_data.model.VehicleStatusBean)2 ArrayList (java.util.ArrayList)1 Date (java.util.Date)1 TimeBean (org.onebusaway.api.model.TimeBean)1 EntryWithReferencesBean (org.onebusaway.api.model.transit.EntryWithReferencesBean)1 RegisteredAlarmV2Bean (org.onebusaway.api.model.transit.RegisteredAlarmV2Bean)1 RouteV2Bean (org.onebusaway.api.model.transit.RouteV2Bean)1 TripV2Bean (org.onebusaway.api.model.transit.TripV2Bean)1 BlockInstanceV2Bean (org.onebusaway.api.model.transit.blocks.BlockInstanceV2Bean)1 BlockV2Bean (org.onebusaway.api.model.transit.blocks.BlockV2Bean)1 ArrivalAndDepartureBeanV1 (org.onebusaway.api.model.where.ArrivalAndDepartureBeanV1)1 StopWithArrivalsAndDeparturesBeanV1 (org.onebusaway.api.model.where.StopWithArrivalsAndDeparturesBeanV1)1 AlarmDetails (org.onebusaway.api.services.AlarmDetails)1 CoordinateBounds (org.onebusaway.geospatial.model.CoordinateBounds)1 EncodedPolylineBean (org.onebusaway.geospatial.model.EncodedPolylineBean)1