home *** CD-ROM | disk | FTP | other *** search
- package com.althea.client.shufflr.controller
- {
- import com.althea.client.shufflr.model.UserProxy;
- import org.puremvc.as3.multicore.interfaces.ICommand;
- import org.puremvc.as3.multicore.interfaces.INotification;
- import org.puremvc.as3.multicore.patterns.command.SimpleCommand;
-
- public class UnauthenticateCommand extends SimpleCommand implements ICommand
- {
- public function UnauthenticateCommand()
- {
- super();
- }
-
- override public function execute(param1:INotification) : void
- {
- this.proxy.unauthenticate();
- }
-
- private function get proxy() : UserProxy
- {
- return this.facade.retrieveProxy(UserProxy.NAME) as UserProxy;
- }
- }
- }
-
-