// Provide a default path to dwr.engine if (dwr == null) var dwr = {}; if (dwr.engine == null) dwr.engine = {}; if (DWREngine == null) var DWREngine = dwr.engine; if (ServiceLocator == null) var ServiceLocator = {}; ServiceLocator._path = '/cessna/dwr'; ServiceLocator.getCountries = function(p0, callback) { dwr.engine._execute(ServiceLocator._path, 'ServiceLocator', 'getCountries', p0, callback); } ServiceLocator.getLocatorService = function(callback) { dwr.engine._execute(ServiceLocator._path, 'ServiceLocator', 'getLocatorService', callback); } ServiceLocator.setLocatorService = function(p0, callback) { dwr.engine._execute(ServiceLocator._path, 'ServiceLocator', 'setLocatorService', p0, callback); } ServiceLocator.getBy = function(p0, p1, p2, callback) { dwr.engine._execute(ServiceLocator._path, 'ServiceLocator', 'getBy', p0, p1, p2, callback); }