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

	this.execute = function(notification /* Notification */)
	{
		var deepLinkMediator = this.facade.retrieveMediator(DeepLinkMediator.NAME);
		this.facade.sendNotification(ApplicationFacade.HASH_RETRIEVED, deepLinkMediator.getCurrentHash(), notification.getType());
	};
};
RetrieveCurrentHashCommand = new Class(new RetrieveCurrentHashCommand());
