| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package com.imt.intimamedia.events.user
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
-
- /**
- * Evénement de validation de compte
- */
- public class ValidateAccountEvent extends SuperEvent
- {
- private var _userId : String;
- private var _password : String;
-
- public function ValidateAccountEvent( userId : String, password : String, dispatcher : * = null )
- {
- super( ApplicationController.USER_VALIDATE_ACCOUNT );
-
- this.userId = userId;
- this.password = password;
- this.dispatcher = dispatcher;
- }
-
- /**
- *
- *
- * @default null
- */
- public function get userId () : String
- {
- return _userId;
- }
-
- /**
- * @private
- */
- public function set userId ( value : String ) : void
- {
- _userId = value;
- }
-
- /**
- *
- *
- * @default null
- */
- public function get password () : String
- {
- return _password;
- }
-
- /**
- * @private
- */
- public function set password ( value : String ) : void
- {
- _password = value;
- }
- }
- }
|