| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.imt.intimamedia.events.user
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
- import com.imt.intimamedia.vo.UserVo;
-
-
- /**
- * Evénement de récupération des cgv acceptées pour un utilisateur
- */
- public class TermsAgreedEvent extends SuperEvent
- {
- private var _user : UserVo;
-
- public function TermsAgreedEvent( user : UserVo, dispatcher : * = null )
- {
- super( ApplicationController.USER_TERMS_AGREED );
-
- this.user = user;
- this.dispatcher = dispatcher;
- }
-
- /**
- * Utilisateur transporté par l'événement
- *
- * @default null
- */
- public function get user () : UserVo
- {
- return _user;
- }
-
- /**
- * @private
- */
- public function set user ( value : UserVo ) : void
- {
- _user = value;
- }
- }
- }
|