Project

General

Profile

Statistics
| Branch: | Revision:

colonymech / docs / www / colonyscout / internal / includes / uploadify / com / adobe / protocols / dict / Response.as @ f59acf11

History | View | Annotate | Download (614 Bytes)

1
package com.adobe.protocols.dict
2
{
3
	public class Response
4
	{
5
		private var _code:uint;
6
		private var _headerText:String;
7
		private var _body:String;
8

    
9
		public function set code(code:uint):void
10
		{
11
			this._code = code;
12
		}
13

    
14
		public function set headerText(headerText:String):void
15
		{
16
			this._headerText = headerText;
17
		}
18

    
19
		public function set body(body:String):void
20
		{
21
			this._body = body;
22
		}
23

    
24
		public function get code():uint
25
		{
26
			return this._code;
27
		}
28

    
29
		public function get headerText():String
30
		{
31
			return this._headerText;
32
		}
33

    
34
		public function get body():String
35
		{
36
			return this._body;
37
		}
38
	}
39
}