package flater.cairngormtips.controller.events
{
import com.universalmind.cairngorm.events.UMEvent;

import flater.cairngormtips.util.out;

import mx.rpc.IResponder;

/**
 *  The GetConfigurationEvent signals a request for the
 *  ConfigurationCommand to download a config file. <br/>
 *  <br/>                                                                                            
 *  Author: <a href="http://www.adamflater.net" target="_blank">
 *  Adam Flater</a>
 *  <br/>                                                                                          
 *  @see flater.cairngormtips.controller.commands.AnnounceFaultEventExampleCommand
 *  @see flater.cairngormtips.controller.CairngormTipsFrontController
 *  @see flater.cairngormtips.EventGeneratorExampleApplication
 */
public class GetConfigurationEvent extends UMEvent
{
    public static const GET_CONFIG : String = 
                           "GetConfigurationEvent.GET_CONFIG";
    
    public function GetConfigurationEvent( 
                          handlers : IResponder = null )
    {
        out( "GetConfigurationEvent Instantiated" );
          
        super( GET_CONFIG, handlers );
    }
    
} //  end class
} //  end package