//= require <mootools-core-1.3-full-nocompat>
//= require <puremvc-mootools-port>
//= require <findsalons/AsyncProxy>
var RetrieveContentCommand = function()
{
	this.Extends = SimpleCommand;

	this.execute = function(notification /* Notification */)
	{
		var hashObj = notification.getBody();
		var asyncProxy = this.facade.retrieveProxy(AsyncProxy.NAME);
		asyncProxy.getPageContent(hashObj);
	};
};
RetrieveContentCommand = new Class(new RetrieveContentCommand());
