| Package | lc.foundation.events |
| Classe | public class LiveCycleFaultEvent |
| Héritage | LiveCycleFaultEvent Event Object |
| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
LiveCycleFaultEvent event is dispatched when a fault occurs.
For information on using this component to customize Workspace, see Customizing the Adobe Digital Enterprise Platform Document Services - Workspace 10.0 User Interface .
| Propriété | Défini par | ||
|---|---|---|---|
![]() | 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 | |
| errorMessage : Message
The error message. | LiveCycleFaultEvent | ||
| errorParams : Object
Additional parameters for the error. | LiveCycleFaultEvent | ||
![]() | eventPhase : uint [lecture seule]
Phase actuelle du flux d’événements. | Event | |
![]() | target : Object [lecture seule]
Cible de l’événement. | Event | |
| token : lc.foundation.util:Token [lecture seule]
The token that represents the call to the fault. | LiveCycleFaultEvent | ||
![]() | type : String [lecture seule]
Type d’événement. | Event | |
| Méthode | Défini par | ||
|---|---|---|---|
LiveCycleFaultEvent(errorMessage:Message, errorParams:Object, type:String, bubbles:Boolean, cancelable:Boolean, token:lc.foundation.util:Token)
Constructor. | LiveCycleFaultEvent | ||
[override]
Creates a copy of a LiveCycleFaultEvent object
and sets the value of each property to match that of the original. | LiveCycleFaultEvent | ||
![]() |
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_EXPIRED : String = "authenticationExpired" [statique]
A special value that specifies that the session for a user timeed-out. | LiveCycleFaultEvent | ||
| CONNECTION_LOST : String = "connectionLost" [statique]
A special value that specifies that the session was disconnected. | LiveCycleFaultEvent | ||
| CONNECTION_NOT_RECOVERED : String = "connectionNotRecovered" [statique]
A special value that specifies that disconnected session could not be recovered. | LiveCycleFaultEvent | ||
| CONNECTION_RECOVERED : String = "connectionRecovered" [statique]
A special value that specifies that a previously disconnected session was recovered. | LiveCycleFaultEvent | ||
| CREDENTIALS_REQUIRED : String = "credentialsRequired" [statique]
A special value that specifies that credentials are required. | LiveCycleFaultEvent | ||
| FAULT : String = "fault" [statique]
A special value that specifies a fault or error occurred. | LiveCycleFaultEvent | ||
| LOGIN_INCORRECT : String = "loginIncorrect" [statique]
A special value that specifies incorrect credentials were used to login to Workspace. | LiveCycleFaultEvent | ||
errorMessage | propriété |
public var errorMessage:Message| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The error message.
errorParams | propriété |
public var errorParams:Object| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Additional parameters for the error.
token | propriété |
token:lc.foundation.util:Token [lecture seule] | Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The token that represents the call to the fault. The value is useful for asynchronous completion token patterns.
Implémentation
public function get token():lc.foundation.util:TokenLiveCycleFaultEvent | () | Constructeur |
public function LiveCycleFaultEvent(errorMessage:Message, errorParams:Object, type:String, bubbles:Boolean, cancelable:Boolean, token:lc.foundation.util:Token)| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
ParamètreserrorMessage:Message — Specifies the error message.
| |
errorParams:Object — Specifies an object containing any parameters of interest relating to the error.
| |
type:String — Specifies the type of the event.
| |
bubbles:Boolean — Specifies whether the event object participates in the bubbling stage of the event flow. The default value is false.
| |
cancelable:Boolean — Specifies whether the event object can be canceled.
| |
token:lc.foundation.util:Token — Specifies request token.
|
clone | () | méthode |
override public function clone():Event| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Creates a copy of a LiveCycleFaultEvent object
and sets the value of each property to match that of the original.
Event — A copy of the LiveCycleFaultEvent object.
|
AUTHENTICATION_EXPIRED | Constante |
public static const AUTHENTICATION_EXPIRED:String = "authenticationExpired"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies that the session for a user timeed-out.
CONNECTION_LOST | Constante |
public static const CONNECTION_LOST:String = "connectionLost"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies that the session was disconnected.
CONNECTION_NOT_RECOVERED | Constante |
public static const CONNECTION_NOT_RECOVERED:String = "connectionNotRecovered"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies that disconnected session could not be recovered.
CONNECTION_RECOVERED | Constante |
public static const CONNECTION_RECOVERED:String = "connectionRecovered"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies that a previously disconnected session was recovered.
CREDENTIALS_REQUIRED | Constante |
public static const CREDENTIALS_REQUIRED:String = "credentialsRequired"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies that credentials are required.
FAULT | Constante |
public static const FAULT:String = "fault"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies a fault or error occurred.
LOGIN_INCORRECT | Constante |
public static const LOGIN_INCORRECT:String = "loginIncorrect"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies incorrect credentials were used to login to Workspace.
Tue Jun 12 2018, 09:30 AM Z
Masquer les propriétés publiques héritées
Afficher les propriétés publiques héritées