home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / com / facebook / commands / auth / RevokeAuthorization.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  751 b   |  30 lines

  1. package com.facebook.commands.auth
  2. {
  3.    import com.facebook.facebook_internal;
  4.    import com.facebook.net.FacebookCall;
  5.    
  6.    use namespace facebook_internal;
  7.    
  8.    public class RevokeAuthorization extends FacebookCall
  9.    {
  10.       public static const METHOD_NAME:String = "auth.revokeAuthorization";
  11.       
  12.       public static const SCHEMA:Array = ["user"];
  13.       
  14.       public var user:String;
  15.       
  16.       public function RevokeAuthorization(param1:String = null)
  17.       {
  18.          super(METHOD_NAME);
  19.          this.user = param1;
  20.       }
  21.       
  22.       override facebook_internal function initialize() : void
  23.       {
  24.          applySchema(SCHEMA,this.user);
  25.          super.facebook_internal::initialize();
  26.       }
  27.    }
  28. }
  29.  
  30.