Dodanie aplikacji sorl.thumbnail i filebrowser.
[redakcja.git] / apps / filebrowser / media / filebrowser / uploadify / com / adobe / protocols / dict / Response.as
diff --git a/apps/filebrowser/media/filebrowser/uploadify/com/adobe/protocols/dict/Response.as b/apps/filebrowser/media/filebrowser/uploadify/com/adobe/protocols/dict/Response.as
new file mode 100755 (executable)
index 0000000..619a8e9
--- /dev/null
@@ -0,0 +1,39 @@
+package com.adobe.protocols.dict\r
+{\r
+       public class Response\r
+       {\r
+               private var _code:uint;\r
+               private var _headerText:String;\r
+               private var _body:String;\r
+\r
+               public function set code(code:uint):void\r
+               {\r
+                       this._code = code;\r
+               }\r
+\r
+               public function set headerText(headerText:String):void\r
+               {\r
+                       this._headerText = headerText;\r
+               }\r
+\r
+               public function set body(body:String):void\r
+               {\r
+                       this._body = body;\r
+               }\r
+\r
+               public function get code():uint\r
+               {\r
+                       return this._code;\r
+               }\r
+\r
+               public function get headerText():String\r
+               {\r
+                       return this._headerText;\r
+               }\r
+\r
+               public function get body():String\r
+               {\r
+                       return this._body;\r
+               }\r
+       }\r
+}
\ No newline at end of file