// Provide a default path to DWREngine if (DWREngine == null) { var DWREngine = {}; } DWREngine._defaultPath = '/dwr'; function RemoteFunctions() { } RemoteFunctions._path = '/dwr'; RemoteFunctions.setUserService = function(p0, callback) { DWREngine._execute(RemoteFunctions._path, 'RemoteFunctions', 'setUserService', p0, callback); } RemoteFunctions.setVagaService = function(p0, callback) { DWREngine._execute(RemoteFunctions._path, 'RemoteFunctions', 'setVagaService', p0, callback); } RemoteFunctions.calculateFoo = function(p0, callback) { DWREngine._execute(RemoteFunctions._path, 'RemoteFunctions', 'calculateFoo', p0, callback); } RemoteFunctions.checkUserName = function(p0, callback) { DWREngine._execute(RemoteFunctions._path, 'RemoteFunctions', 'checkUserName', p0, callback); } RemoteFunctions.checkEmail = function(p0, callback) { DWREngine._execute(RemoteFunctions._path, 'RemoteFunctions', 'checkEmail', p0, callback); } RemoteFunctions.listTenVagas = function(callback) { DWREngine._execute(RemoteFunctions._path, 'RemoteFunctions', 'listTenVagas', callback); }