You should use the methods to set them
locationSensor.setMinTimeInterval(60000);
locationSensor.setMinDistanceInterval(100);
The distance interval was set to static final, so it could not be changed. I've changed these both to private, and created the method for min distance so they both can be set. I updated the jar on the server, so you should be able to see it if you do Update AltBridge jar file from the AltBridge tools menu.
Note that the default for min time interval is already 60000, so the above is redundant. The min Distance Interval is set to 5 as a default. (meters)
Ryan