Simpler deployment.
[redakcja.git] / redakcja / static / filebrowser / uploadify / com / adobe / protocols / dict / Response.as
1 package com.adobe.protocols.dict\r
2 {\r
3         public class Response\r
4         {\r
5                 private var _code:uint;\r
6                 private var _headerText:String;\r
7                 private var _body:String;\r
8 \r
9                 public function set code(code:uint):void\r
10                 {\r
11                         this._code = code;\r
12                 }\r
13 \r
14                 public function set headerText(headerText:String):void\r
15                 {\r
16                         this._headerText = headerText;\r
17                 }\r
18 \r
19                 public function set body(body:String):void\r
20                 {\r
21                         this._body = body;\r
22                 }\r
23 \r
24                 public function get code():uint\r
25                 {\r
26                         return this._code;\r
27                 }\r
28 \r
29                 public function get headerText():String\r
30                 {\r
31                         return this._headerText;\r
32                 }\r
33 \r
34                 public function get body():String\r
35                 {\r
36                         return this._body;\r
37                 }\r
38         }\r
39 }