aboutsummaryrefslogtreecommitdiff
path: root/vendors/uploadify/com/adobe/protocols/dict/util/CompleteResponseEvent.as
diff options
context:
space:
mode:
Diffstat (limited to 'vendors/uploadify/com/adobe/protocols/dict/util/CompleteResponseEvent.as')
-rw-r--r--vendors/uploadify/com/adobe/protocols/dict/util/CompleteResponseEvent.as25
1 files changed, 25 insertions, 0 deletions
diff --git a/vendors/uploadify/com/adobe/protocols/dict/util/CompleteResponseEvent.as b/vendors/uploadify/com/adobe/protocols/dict/util/CompleteResponseEvent.as
new file mode 100644
index 000000000..fc552f1b3
--- /dev/null
+++ b/vendors/uploadify/com/adobe/protocols/dict/util/CompleteResponseEvent.as
@@ -0,0 +1,25 @@
+package com.adobe.protocols.dict.util
+{
+ import flash.events.Event;
+
+ public class CompleteResponseEvent
+ extends Event
+ {
+ private var _response:String;
+
+ public function CompleteResponseEvent()
+ {
+ super(SocketHelper.COMPLETE_RESPONSE);
+ }
+
+ public function set response(response:String):void
+ {
+ this._response = response;
+ }
+
+ public function get response():String
+ {
+ return this._response;
+ }
+ }
+} \ No newline at end of file