X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/36f6233fd79390ad5af8a1532eac60a0ae57c825..f938afb8ab4cb091d12e0ef0311eaea14b774798:/redakcja/static/filebrowser/uploadify/com/adobe/protocols/dict/util/CompleteResponseEvent.as diff --git a/redakcja/static/filebrowser/uploadify/com/adobe/protocols/dict/util/CompleteResponseEvent.as b/redakcja/static/filebrowser/uploadify/com/adobe/protocols/dict/util/CompleteResponseEvent.as new file mode 100644 index 00000000..fc552f1b --- /dev/null +++ b/redakcja/static/filebrowser/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