X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/04b05946ab640eaf9135a73772b704dd41c323e7..717c14c014e3c988bcb392599a47ffa92630da78:/platforma/static/filebrowser/uploadify/com/adobe/protocols/dict/Response.as diff --git a/platforma/static/filebrowser/uploadify/com/adobe/protocols/dict/Response.as b/platforma/static/filebrowser/uploadify/com/adobe/protocols/dict/Response.as new file mode 100755 index 00000000..619a8e90 --- /dev/null +++ b/platforma/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