Hi,
I'm developing an application that uses the onebusaway siri core library to receive stop monitoring deliveries.
While looking at the SiriClientRequestFactory code I can see that it seems like there was more work planed to do to support stop monitoring.
For instance there is the following method.....
private void handleVehicleMonitoringSubscriptionSpecificArguments(VehicleMonitoringSubscriptionStructure moduleSubscription, Map<String, String> args) {
VehicleMonitoringRequestStructure vmr = new VehicleMonitoringRequestStructure();
moduleSubscription.setVehicleMonitoringRequest(vmr);
applyArgsToVehicleMonitoringRequest(vmr, args);
}
.....it seems like there should be one called handleStopMonitoringSubscriptionSpecificArguments etc
I guess I'll add what I need to this class and supply a patch.
Ben