home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / com / facebook / air / SessionData.as < prev   
Encoding:
Text File  |  2010-06-23  |  3.5 KB  |  116 lines

  1. package com.facebook.air
  2. {
  3.    import flash.events.Event;
  4.    import flash.events.EventDispatcher;
  5.    import flash.events.IEventDispatcher;
  6.    import mx.events.PropertyChangeEvent;
  7.    
  8.    public class SessionData implements IEventDispatcher
  9.    {
  10.       private var _1309235404expires:String;
  11.       
  12.       private var _906277200secret:String;
  13.       
  14.       private var _22145738session_key:String;
  15.       
  16.       private var _115792uid:String;
  17.       
  18.       private var _bindingEventDispatcher:EventDispatcher = new EventDispatcher(IEventDispatcher(this));
  19.       
  20.       public function SessionData()
  21.       {
  22.          super();
  23.       }
  24.       
  25.       public function dispatchEvent(param1:Event) : Boolean
  26.       {
  27.          return this._bindingEventDispatcher.dispatchEvent(param1);
  28.       }
  29.       
  30.       public function removeEventListener(param1:String, param2:Function, param3:Boolean = false) : void
  31.       {
  32.          this._bindingEventDispatcher.removeEventListener(param1,param2,param3);
  33.       }
  34.       
  35.       [Bindable(event="propertyChange")]
  36.       public function get expires() : String
  37.       {
  38.          return this._1309235404expires;
  39.       }
  40.       
  41.       public function willTrigger(param1:String) : Boolean
  42.       {
  43.          return this._bindingEventDispatcher.willTrigger(param1);
  44.       }
  45.       
  46.       [Bindable(event="propertyChange")]
  47.       public function get uid() : String
  48.       {
  49.          return this._115792uid;
  50.       }
  51.       
  52.       public function addEventListener(param1:String, param2:Function, param3:Boolean = false, param4:int = 0, param5:Boolean = false) : void
  53.       {
  54.          this._bindingEventDispatcher.addEventListener(param1,param2,param3,param4,param5);
  55.       }
  56.       
  57.       public function set secret(param1:String) : void
  58.       {
  59.          var _loc2_:Object = this._906277200secret;
  60.          if(_loc2_ !== param1)
  61.          {
  62.             this._906277200secret = param1;
  63.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"secret",_loc2_,param1));
  64.          }
  65.       }
  66.       
  67.       public function set expires(param1:String) : void
  68.       {
  69.          var _loc2_:Object = this._1309235404expires;
  70.          if(_loc2_ !== param1)
  71.          {
  72.             this._1309235404expires = param1;
  73.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"expires",_loc2_,param1));
  74.          }
  75.       }
  76.       
  77.       public function set uid(param1:String) : void
  78.       {
  79.          var _loc2_:Object = this._115792uid;
  80.          if(_loc2_ !== param1)
  81.          {
  82.             this._115792uid = param1;
  83.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"uid",_loc2_,param1));
  84.          }
  85.       }
  86.       
  87.       [Bindable(event="propertyChange")]
  88.       public function get secret() : String
  89.       {
  90.          return this._906277200secret;
  91.       }
  92.       
  93.       public function set session_key(param1:String) : void
  94.       {
  95.          var _loc2_:Object = this._22145738session_key;
  96.          if(_loc2_ !== param1)
  97.          {
  98.             this._22145738session_key = param1;
  99.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"session_key",_loc2_,param1));
  100.          }
  101.       }
  102.       
  103.       public function hasEventListener(param1:String) : Boolean
  104.       {
  105.          return this._bindingEventDispatcher.hasEventListener(param1);
  106.       }
  107.       
  108.       [Bindable(event="propertyChange")]
  109.       public function get session_key() : String
  110.       {
  111.          return this._22145738session_key;
  112.       }
  113.    }
  114. }
  115.  
  116.