/**
 * AjaxMessage - Einfacher Daten-Container für den AJAX-Messaging-Mechanismus.
 * @author Andreas Bethge
 * @copyright 2009, Andreas Bethge | it consulting
 */

function AjaxMessage(){
	
	this.methodName = "";
	this.requestKey = "";
	this.data = null;
	this.errors = "";
	
}
