Guide de référence ActionScript® 3.0 pour la plate-forme Adobe® Flash®
Accueil  |  Masquer la liste des packages et des classes |  Packages  |  Classes  |  Nouveautés  |  Index  |  Annexes  |  Pourquoi existe-t-il du contenu en anglais ?
Filtres : Récupération des données du serveur...
Récupération des données du serveur...
com.adobe.livecycle.ria.security.api 

AuthenticationEvent  - AS3 ADEP Security

Packagecom.adobe.livecycle.ria.security.api
Classepublic class AuthenticationEvent
HéritageAuthenticationEvent Inheritance Event Inheritance Object

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Experience Services - Security 10
Versions du moteur d’exécution: AIR 2.6, Flash Player 10.2

AuthenticationEvent objects are dispatched by the ISecurityManager class when an authentication related operation is performed.



Propriétés publiques
 PropriétéDéfini par
  authResult : IAuthResult
[lecture seule] The authentication result associated with the event.
AuthenticationEvent
 Inheritedbubbles : Boolean
[lecture seule] Indique si un événement peut se propager vers le haut (bubbling).
Event
 Inheritedcancelable : Boolean
[lecture seule] Indique si le comportement associé à l’événement peut être évité.
Event
 Inheritedconstructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet.
Object
 InheritedcurrentTarget : Object
[lecture seule] L’objet qui traite activement l’objet Event avec un écouteur d’événements.
Event
 InheritedeventPhase : uint
[lecture seule] Phase actuelle du flux d’événements.
Event
 Inheritedtarget : Object
[lecture seule] Cible de l’événement.
Event
 Inheritedtype : String
[lecture seule] Type d’événement.
Event
Méthodes publiques
 MéthodeDéfini par
  
AuthenticationEvent(type:String, authResult:IAuthResult = null, bubbles:Boolean = false, cancelable:Boolean = false)
Constructor.
AuthenticationEvent
 Inherited
Duplique une occurrence d’une sous-classe Event.
Event
 Inherited
formatToString(className:String, ... arguments):String
Fonction d’un utilitaire permettant d’implémenter la méthode toString() dans des classes Event ActionScript 3.0 personnalisées.
Event
 Inherited
Indique si la propriété spécifiée d’un objet est définie.
Object
 Inherited
Vérifie si la méthode preventDefault() a été appelée pour l’événement.
Event
 Inherited
Indique si une occurrence de la classe Object figure dans la chaîne de prototype de l’objet spécifié en tant que paramètre.
Object
 Inherited
Annule le comportement par défaut d’un événement si cette opération est possible.
Event
 Inherited
Indique si la propriété spécifiée existe et est énumérable.
Object
 Inherited
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle.
Object
 Inherited
Bloque le traitement des écouteurs d’événement dans le nœud actuel et les suivants dans le flux d’événements.
Event
 Inherited
Bloque le traitement des écouteurs d’événement dans les nœuds qui suivent le nœud actuel dans le flux d’événements.
Event
 Inherited
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur.
Object
 Inherited
Renvoie une chaîne répertoriant toutes les propriétés de l’objet Event.
Event
 Inherited
Renvoie la valeur primitive de l’objet spécifié.
Object
Constantes publiques
 ConstanteDéfini par
  AUTHENTICATION_FAILED : String = "FAILED"
[statique] A special value that indicates the type of event that is dispatched when authentication fails using the username and password.
AuthenticationEvent
  AUTHENTICATION_REQUIRED : String = "CREDENTIAL_CHALLENGE"
[statique] A special value that indicates the type of event that is dispatched when authentication using single sign-on (SSO) fails.
AuthenticationEvent
  AUTHENTICATION_SUCCESS : String = "COMPLETE"
[statique] A special value that indicates that the authentication process was successful.
AuthenticationEvent
  LOGOUT_COMPLETE : String = "LOGGED_OUT"
[statique] A special value that indicates the type of event that is dispatched a user logs off.
AuthenticationEvent
Détails de la propriété

authResult

propriété
authResult:IAuthResult  [lecture seule]

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Experience Services - Security 10
Versions du moteur d’exécution: AIR 2.6, Flash Player 10.2

The authentication result associated with the event. Depending on the event type, it can provide more details.



Implémentation
    public function get authResult():IAuthResult
Détails du constructeur

AuthenticationEvent

()Constructeur
public function AuthenticationEvent(type:String, authResult:IAuthResult = null, bubbles:Boolean = false, cancelable:Boolean = false)

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Experience Services - Security 10
Versions du moteur d’exécution: AIR 2.6, Flash Player 10.2

Constructor.

Creates a new AuthenticationEvent object. The appropriate dynamic properties are created depending on the event type specified.

Paramètres
type:String — Specifies the event type.
 
authResult:IAuthResult (default = null) — Specifies the IAuthResult data related to the event.
 
bubbles:Boolean (default = false) — Specifies whether the event object participates in the bubbling stage of the event flow.
 
cancelable:Boolean (default = false) — Specifies whether the event object can be canceled.
Détails de la constante

AUTHENTICATION_FAILED

Constante
public static const AUTHENTICATION_FAILED:String = "FAILED"

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Experience Services - Security 10
Versions du moteur d’exécution: AIR 2.6, Flash Player 10.2

A special value that indicates the type of event that is dispatched when authentication fails using the username and password. As a response to this type of event, an application can show an error message to the user. This event would only happen when authentication is done using username and password and NOT in single sign-on scenario.

AUTHENTICATION_REQUIRED

Constante 
public static const AUTHENTICATION_REQUIRED:String = "CREDENTIAL_CHALLENGE"

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Experience Services - Security 10
Versions du moteur d’exécution: AIR 2.6, Flash Player 10.2

A special value that indicates the type of event that is dispatched when authentication using single sign-on (SSO) fails. When SSO fails, the user's username and password is required for authentication. As a response to this event, an application can display the login page to the user.

AUTHENTICATION_SUCCESS

Constante 
public static const AUTHENTICATION_SUCCESS:String = "COMPLETE"

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Experience Services - Security 10
Versions du moteur d’exécution: AIR 2.6, Flash Player 10.2

A special value that indicates that the authentication process was successful. Authentication can be completed using single sign-on (SSO) or a username and password. As a response to this event the application can show the welcome page to the user. An application can validate for permissions and roles to further verify the user is allowed access. As a response to this event, an application would do complete the validation and then display the welcome page.

LOGOUT_COMPLETE

Constante 
public static const LOGOUT_COMPLETE:String = "LOGGED_OUT"

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Experience Services - Security 10
Versions du moteur d’exécution: AIR 2.6, Flash Player 10.2

A special value that indicates the type of event that is dispatched a user logs off. As a response to this event, an application can display the logout page. The logout page can inform the user that he has been logged out. Alternatively, an application can display the login page to the user.





[ X ]Pourquoi existe-t-il du contenu en anglais ?
Certaines parties du Guide de référence ActionScript 3.0 sont en anglais

Tout le contenu du Guide de référence ActionScript 3.0 n’a pas été traduit dans toutes les langues. Si un élément de langage n’est pas traduit, il s’affiche en anglais. Par exemple, la classe ga.controls.HelpBox n’est traduite dans aucune langue. Ainsi, dans la version française du guide de référence, la classe ga.controls.HelpBox apparaît en anglais.