antville/code/SysLog/objectFunctions.js
2002-03-27 11:06:11 +00:00

16 lines
No EOL
411 B
JavaScript

/**
* constructor for a new syslog-object
* @param String type of modified object
* @param String name or ID of modified object
* @param String message to add as log-entry
* @param Object sysadmin
*/
function constructor (type,object,logentry,sysadmin) {
this.type = type;
this.object = object;
this.logentry = logentry;
this.sysadmin = sysadmin;
this.createtime = new Date();
return;
}