
/**
 * $Id: AjaxRequest.js,v 1.1.2.1 2006/04/19 21:48:07 cschmidt Exp $
 */


function AjaxRequest(){

	/** PRIVATE MEMBER */
	this.sComponent = null;
	this.sMethod    = null;
	
	/** set the component */
	this.setComponent = function (sComponent){
		this.sComponent = sComponent;
	}

	/** get the component */
	this.getComponent = function (){
		return this.sComponent;
	}
	
	
	/** set the method */
	this.setMethod = function (sMethod) {
		this.sMethod = sMethod;
	}
	
	/** get the method */
	this.getMethod = function () {
		return this.sMethod;
	}
	
}
