Sha256: 9892443120b87b39a897d66218c9bd39add00e83cca19c3247b8162ca99f9099

Contents?: true

Size: 652 Bytes

Versions: 1

Compression:

Stored size: 652 Bytes

Contents

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;
		}
	}
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
saphira-0.1.1.beta1 app/assets/images/saphira/com/adobe/protocols/dict/Response.as