Package | com.adobe.icc.services.user |
Class | public class UserEvent |
Inheritance | UserEvent Event Object |
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Method | Defined By | ||
---|---|---|---|
Constructor. | UserEvent | ||
Duplicates an instance of an Event subclass. | Event | ||
A utility function for implementing the toString() method in custom
ActionScript 3.0 Event classes. | Event | ||
Indicates whether an object has a specified property defined. | Object | ||
Checks whether the preventDefault() method has been called on the event. | Event | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Cancels an event's default behavior if that behavior can be canceled. | Event | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Prevents processing of any event listeners in the current node and any subsequent nodes in
the event flow. | Event | ||
Prevents processing of any event listeners in nodes subsequent to the current node in the
event flow. | Event | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns a string containing all the properties of the Event object. | Event | ||
Returns the primitive value of the specified object. | Object |
Constant | Defined By | ||
---|---|---|---|
AUTHENTICATION_FAILED : String = "authenticationFailed" [static]
Dispatched when authentication fails using a username and password. | UserEvent | ||
AUTHENTICATION_REQUIRED : String = "authenticationRequired" [static]
Dispatched when authentication using single sign-on is not successful. | UserEvent | ||
AUTHENTICATION_SUCCESS : String = "authenticationSuccess" [static]
Dispatched when the authentication process is successful. | UserEvent | ||
LOAD_USER_COMPLETE : String = "loadUserComplete" [static]
Dispatched when user loading is complete. | UserEvent | ||
LOGOUT_COMPLETE : String = "logoutComplete" [static]
Dispatched when logout is complete. | UserEvent | ||
RENEW_SESSION_COMPLETE : String = "renewSessionComplete" [static]
Dispatched when the renewal of a session is complete. | UserEvent |
UserEvent | () | Constructor |
public function UserEvent(type:String)
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Constructor. Accepts an event type
and instantiates the corresponding UserEvent
.
type:String — One of the event type constants.
|
AUTHENTICATION_FAILED | Constant |
public static const AUTHENTICATION_FAILED:String = "authenticationFailed"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Dispatched when authentication fails using a username and password. An application can respond to this event by displaying an error message to the user. This event is dispatched only when authentication is done using username and password. It is not dispatched when single sign-on is used.
AUTHENTICATION_REQUIRED | Constant |
public static const AUTHENTICATION_REQUIRED:String = "authenticationRequired"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Dispatched when authentication using single sign-on is not successful. The user's username and password are required for authentication. To respond to this event the application can display the login page.
AUTHENTICATION_SUCCESS | Constant |
public static const AUTHENTICATION_SUCCESS:String = "authenticationSuccess"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Dispatched when the authentication process is successful. Authentication can be done using single sign-on or a username and password. To respond to this event, the application can display the welcome page to the user. The application can also perform a check for a specific permission or role to verify the user. To respond to this event the application can perform the checks and then display the welcome page only.
LOAD_USER_COMPLETE | Constant |
public static const LOAD_USER_COMPLETE:String = "loadUserComplete"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Dispatched when user loading is complete.
LOGOUT_COMPLETE | Constant |
public static const LOGOUT_COMPLETE:String = "logoutComplete"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Dispatched when logout is complete. To respond to this event, an application can display a logout page informing the user that he or she has been logged out. Or the application can take the user back to the login page.
RENEW_SESSION_COMPLETE | Constant |
public static const RENEW_SESSION_COMPLETE:String = "renewSessionComplete"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Dispatched when the renewal of a session is complete.
Wed Nov 21 2018, 06:34 AM -08:00