Paket | lc.foundation.events |
Klasse | public class LiveCycleFaultEvent |
Vererbung | LiveCycleFaultEvent Event Object |
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 .
Eigenschaft | Definiert von | ||
---|---|---|---|
bubbles : Boolean [schreibgeschützt]
Gibt an, ob es sich bei dem Ereignis um ein Bubbling-Ereignis handelt. | Event | ||
cancelable : Boolean [schreibgeschützt]
Gibt an, ob das mit dem Ereignis verknüpfte Verhalten verhindert werden kann. | Event | ||
constructor : Object
Ein Verweis auf das Klassenobjekt oder die Konstruktorfunktion für eine angegebene Objektinstanz. | Object | ||
currentTarget : Object [schreibgeschützt]
Das Objekt, welches das Ereignisobjekt aktiv mit einem Ereignis-Listener verarbeitet. | Event | ||
errorMessage : Message
The error message. | LiveCycleFaultEvent | ||
errorParams : Object
Additional parameters for the error. | LiveCycleFaultEvent | ||
eventPhase : uint [schreibgeschützt]
Die aktuelle Phase im Ereignisablauf. | Event | ||
target : Object [schreibgeschützt]
Das Ereignis-Ziel. | Event | ||
token : lc.foundation.util:Token [schreibgeschützt]
The token that represents the call to the fault. | LiveCycleFaultEvent | ||
type : String [schreibgeschützt]
Der Ereignistyp. | Event |
Methode | Definiert von | ||
---|---|---|---|
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 | ||
Eine Dienstprogrammfunktion zur Implementierung der toString()-Methode in benutzerdefinierten ActionScript 3.0 Event-Klassen. | Event | ||
Gibt an, ob für ein Objekt eine bestimmte Eigenschaft definiert wurde. | Object | ||
Überprüft, ob die preventDefault()-Methode bei dem Ereignis aufgerufen wurde. | Event | ||
Gibt an, ob eine Instanz der Object-Klasse in der Prototypkette des Objekts vorhanden ist, das als Parameter angegeben wurde. | Object | ||
Bricht das Standardverhalten eines Ereignisses ab, wenn dieses Verhalten abgebrochen werden kann. | Event | ||
Gibt an, ob die angegebene Eigenschaft vorhanden ist und durchlaufen werden kann. | Object | ||
Legt die Verfügbarkeit einer dynamischen Eigenschaft für Schleifenoperationen fest. | Object | ||
Verhindert die Verarbeitung von Ereignis-Listenern im aktuellen Knoten und in Knoten, die dem aktuellen Knoten im Ereignisablauf nachfolgen. | Event | ||
Verhindert die Verarbeitung von Ereignis-Listenern in Knoten, die dem aktuellen Knoten im Ereignisablauf nachfolgen. | Event | ||
Gibt die Stringdarstellung dieses Objekts zurück, formatiert entsprechend den Konventionen des Gebietsschemas. | Object | ||
Gibt eine Zeichenfolge zurück, die alle Eigenschaften des Ereignisobjekts enthält. | Event | ||
Gibt den Grundwert des angegebenen Objekts zurück. | Object |
Konstante | Definiert von | ||
---|---|---|---|
AUTHENTICATION_EXPIRED : String = "authenticationExpired" [statisch]
A special value that specifies that the session for a user timeed-out. | LiveCycleFaultEvent | ||
CONNECTION_LOST : String = "connectionLost" [statisch]
A special value that specifies that the session was disconnected. | LiveCycleFaultEvent | ||
CONNECTION_NOT_RECOVERED : String = "connectionNotRecovered" [statisch]
A special value that specifies that disconnected session could not be recovered. | LiveCycleFaultEvent | ||
CONNECTION_RECOVERED : String = "connectionRecovered" [statisch]
A special value that specifies that a previously disconnected session was recovered. | LiveCycleFaultEvent | ||
CREDENTIALS_REQUIRED : String = "credentialsRequired" [statisch]
A special value that specifies that credentials are required. | LiveCycleFaultEvent | ||
FAULT : String = "fault" [statisch]
A special value that specifies a fault or error occurred. | LiveCycleFaultEvent | ||
LOGIN_INCORRECT : String = "loginIncorrect" [statisch]
A special value that specifies incorrect credentials were used to login to Workspace. | LiveCycleFaultEvent |
errorMessage | Eigenschaft |
public var errorMessage:Message
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The error message.
errorParams | Eigenschaft |
public var errorParams:Object
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Additional parameters for the error.
token | Eigenschaft |
token:lc.foundation.util:Token
[schreibgeschützt] Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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.
Implementierung
public function get token():lc.foundation.util:Token
LiveCycleFaultEvent | () | Konstruktor |
public function LiveCycleFaultEvent(errorMessage:Message, errorParams:Object, type:String, bubbles:Boolean, cancelable:Boolean, token:lc.foundation.util:Token)
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
ParametererrorMessage: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 | () | Methode |
override public function clone():Event
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const AUTHENTICATION_EXPIRED:String = "authenticationExpired"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies that the session for a user timeed-out.
CONNECTION_LOST | Konstante |
public static const CONNECTION_LOST:String = "connectionLost"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies that the session was disconnected.
CONNECTION_NOT_RECOVERED | Konstante |
public static const CONNECTION_NOT_RECOVERED:String = "connectionNotRecovered"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies that disconnected session could not be recovered.
CONNECTION_RECOVERED | Konstante |
public static const CONNECTION_RECOVERED:String = "connectionRecovered"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies that a previously disconnected session was recovered.
CREDENTIALS_REQUIRED | Konstante |
public static const CREDENTIALS_REQUIRED:String = "credentialsRequired"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies that credentials are required.
FAULT | Konstante |
public static const FAULT:String = "fault"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies a fault or error occurred.
LOGIN_INCORRECT | Konstante |
public static const LOGIN_INCORRECT:String = "loginIncorrect"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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, 10:04 AM Z