if (typeof UserGroup != "function") { function UserGroup() { this.id = 0; this.group = null; this.user = null; } } if (typeof User != "function") { function User() { this.birthday = null; this.lastName = null; this.primaryOfficeName = null; this.userGroupsNames = null; this.agent = null; this.id = 0; this.primaryOffice = null; this.userGroups = null; this.phoneNumber = null; this.email = null; this.copierCode = null; this.login = null; this.firstName = null; this.resourceGallerySize = 0; this.disabled = false; } } // 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 (LogInterface == null) var LogInterface = {}; LogInterface._path = '/dwr'; LogInterface.addNote = function(p0, p1, p2, callback) { dwr.engine._execute(LogInterface._path, 'LogInterface', 'addNote', p0, p1, p2, callback); } LogInterface.getLogs = function(p0, p1, callback) { dwr.engine._execute(LogInterface._path, 'LogInterface', 'getLogs', p0, p1, callback); }