Package | com.adobe.livecycle.ria.security.api |
Classe | public class AuthenticationEvent |
Héritage | AuthenticationEvent Event 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é | Défini par | ||
---|---|---|---|
authResult : IAuthResult [lecture seule]
The authentication result associated with the event. | AuthenticationEvent | ||
bubbles : Boolean [lecture seule]
Indique si un événement peut se propager vers le haut (bubbling). | Event | ||
cancelable : Boolean [lecture seule]
Indique si le comportement associé à l’événement peut être évité. | Event | ||
constructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet. | Object | ||
currentTarget : Object [lecture seule]
L’objet qui traite activement l’objet Event avec un écouteur d’événements. | Event | ||
eventPhase : uint [lecture seule]
Phase actuelle du flux d’événements. | Event | ||
target : Object [lecture seule]
Cible de l’événement. | Event | ||
type : String [lecture seule]
Type d’événement. | Event |
Méthode | Défini par | ||
---|---|---|---|
AuthenticationEvent(type:String, authResult:IAuthResult = null, bubbles:Boolean = false, cancelable:Boolean = false)
Constructor. | AuthenticationEvent | ||
Duplique une occurrence d’une sous-classe Event. | Event | ||
Fonction d’un utilitaire permettant d’implémenter la méthode toString() dans des classes Event ActionScript 3.0 personnalisées. | Event | ||
Indique si la propriété spécifiée d’un objet est définie. | Object | ||
Vérifie si la méthode preventDefault() a été appelée pour l’événement. | Event | ||
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 | ||
Annule le comportement par défaut d’un événement si cette opération est possible. | Event | ||
Indique si la propriété spécifiée existe et est énumérable. | Object | ||
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle. | Object | ||
Bloque le traitement des écouteurs d’événement dans le nœud actuel et les suivants dans le flux d’événements. | Event | ||
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 | ||
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | ||
Renvoie une chaîne répertoriant toutes les propriétés de l’objet Event. | Event | ||
Renvoie la valeur primitive de l’objet spécifié. | Object |
Constante | Dé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 |
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
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.
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.
|
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.
Tue Jun 12 2018, 09:30 AM Z