source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/control/reports/ReportDownloadEvent.as@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 1.5 KB
Line 
1/* LoadConfigBedsEvent.as */
2
3package gov.va.med.edp.control.reports
4{
5 import com.adobe.cairngorm.control.CairngormEvent;
6
7 import flash.events.Event;
8
9 import gov.va.med.edp.vo.reports.ReportParamsVO;
10
11 public class ReportDownloadEvent extends CairngormEvent
12 {
13 public static const EVENT_DOWNLOAD_REPORT:String = "downloadReportEvent";
14
15 public static const EVENT_ACTIVITY_REPORT:String = "Activity";
16 public static const EVENT_DELAY_REPORT:String = "_Delay";
17 public static const EVENT_SUMMARY_REPORT:String = "Summary";
18 public static const EVENT_MISSED_OP_REPORT:String = "MissedOp";
19 public static const EVENT_ACUITY_REPORT:String = "Acuity";
20 public static const EVENT_SHIFT_REPORT:String = "Shift";
21 public static const EVENT_PROVIDER_REPORT:String = "Provider";
22 public static const EVENT_EXPOSURE_REPORT:String = "Exposure";
23 public static const EVENT_PATIENT_INTAKE_REPORT:String = "Intake";
24 public static const EVENT_PATIENT_XREF_REPORT:String = "Patient";
25 public static const EVENT_VA_ADMISSIONS_REPORT:String = "Admissions";
26 public static const EVENT_BVAC_REPORT:String = "Bvac";
27 public static const EVENT_ORDERS_BY_ACUITY_REPORT:String = "Orders";
28
29 public var reportParams: ReportParamsVO;
30
31 public function ReportDownloadEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
32 {
33 super(type, bubbles, cancelable);
34 }
35
36 override public function clone():Event
37 {
38 return new ReportDownloadEvent(type);
39 }
40 }
41}
Note: See TracBrowser for help on using the repository browser.