if (typeof UserGroup != "function") { function UserGroup() { this.id = 0; this.group = null; this.user = null; } } if (typeof User != "function") { function User() { this.primaryOffice = null; this.id = 0; this.lastName = null; this.birthday = null; this.userGroups = null; this.phoneNumber = null; this.email = null; this.login = null; this.firstName = null; this.agent = null; } } // 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 (SiteInterface == null) var SiteInterface = {}; SiteInterface._path = '/dwr'; SiteInterface.save = function(p0, callback) { dwr.engine._execute(SiteInterface._path, 'SiteInterface', 'save', p0, callback); } SiteInterface.getByName = function(p0, callback) { dwr.engine._execute(SiteInterface._path, 'SiteInterface', 'getByName', p0, callback); } SiteInterface.getAll = function(callback) { dwr.engine._execute(SiteInterface._path, 'SiteInterface', 'getAll', callback); } SiteInterface.deleteSite = function(p0, callback) { dwr.engine._execute(SiteInterface._path, 'SiteInterface', 'deleteSite', p0, callback); }