X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/36f6233fd79390ad5af8a1532eac60a0ae57c825..f938afb8ab4cb091d12e0ef0311eaea14b774798:/redakcja/static/filebrowser/uploadify/com/adobe/protocols/dict/Response.as diff --git a/redakcja/static/filebrowser/uploadify/com/adobe/protocols/dict/Response.as b/redakcja/static/filebrowser/uploadify/com/adobe/protocols/dict/Response.as new file mode 100644 index 00000000..619a8e90 --- /dev/null +++ b/redakcja/static/filebrowser/uploadify/com/adobe/protocols/dict/Response.as @@ -0,0 +1,39 @@ +package com.adobe.protocols.dict +{ + public class Response + { + private var _code:uint; + private var _headerText:String; + private var _body:String; + + public function set code(code:uint):void + { + this._code = code; + } + + public function set headerText(headerText:String):void + { + this._headerText = headerText; + } + + public function set body(body:String):void + { + this._body = body; + } + + public function get code():uint + { + return this._code; + } + + public function get headerText():String + { + return this._headerText; + } + + public function get body():String + { + return this._body; + } + } +} \ No newline at end of file