
// Provide a default path to dwr.engine
if (typeof this['dwr'] == 'undefined') this.dwr = {};
if (typeof dwr['engine'] == 'undefined') dwr.engine = {};

if (typeof this['GeoLocationServiceFacade'] == 'undefined') this.GeoLocationServiceFacade = {};

GeoLocationServiceFacade._path = '/tlf/dwr';

GeoLocationServiceFacade.getAllGeoLocations = function(callback) {
  dwr.engine._execute(GeoLocationServiceFacade._path, 'GeoLocationServiceFacade', 'getAllGeoLocations', callback);
};



