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

  1. package com.facebook.data.auth
  2. {
  3.    import com.facebook.data.FacebookData;
  4.    import mx.events.PropertyChangeEvent;
  5.    
  6.    public class GetSessionData extends FacebookData
  7.    {
  8.       private var _1309235404expires:Date;
  9.       
  10.       private var _22145738session_key:String;
  11.       
  12.       private var _906277200secret:String;
  13.       
  14.       private var _115792uid:String;
  15.       
  16.       public function GetSessionData()
  17.       {
  18.          super();
  19.       }
  20.       
  21.       public function set uid(param1:String) : void
  22.       {
  23.          var _loc2_:Object = this._115792uid;
  24.          if(_loc2_ !== param1)
  25.          {
  26.             this._115792uid = param1;
  27.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"uid",_loc2_,param1));
  28.          }
  29.       }
  30.       
  31.       public function set expires(param1:Date) : void
  32.       {
  33.          var _loc2_:Object = this._1309235404expires;
  34.          if(_loc2_ !== param1)
  35.          {
  36.             this._1309235404expires = param1;
  37.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"expires",_loc2_,param1));
  38.          }
  39.       }
  40.       
  41.       public function set secret(param1:String) : void
  42.       {
  43.          var _loc2_:Object = this._906277200secret;
  44.          if(_loc2_ !== param1)
  45.          {
  46.             this._906277200secret = param1;
  47.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"secret",_loc2_,param1));
  48.          }
  49.       }
  50.       
  51.       [Bindable(event="propertyChange")]
  52.       public function get expires() : Date
  53.       {
  54.          return this._1309235404expires;
  55.       }
  56.       
  57.       [Bindable(event="propertyChange")]
  58.       public function get uid() : String
  59.       {
  60.          return this._115792uid;
  61.       }
  62.       
  63.       public function set session_key(param1:String) : void
  64.       {
  65.          var _loc2_:Object = this._22145738session_key;
  66.          if(_loc2_ !== param1)
  67.          {
  68.             this._22145738session_key = param1;
  69.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"session_key",_loc2_,param1));
  70.          }
  71.       }
  72.       
  73.       [Bindable(event="propertyChange")]
  74.       public function get session_key() : String
  75.       {
  76.          return this._22145738session_key;
  77.       }
  78.       
  79.       [Bindable(event="propertyChange")]
  80.       public function get secret() : String
  81.       {
  82.          return this._906277200secret;
  83.       }
  84.    }
  85. }
  86.  
  87.