Pacote | com.adobe.livecycle.ria.security.api |
Classe | public class AuthenticationEvent |
Herança | AuthenticationEvent Event Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
AuthenticationEvent
objects are dispatched by the ISecurityManager
class when an authentication
related operation is performed.
Propriedade | Definido por | ||
---|---|---|---|
authResult : IAuthResult [somente leitura]
The authentication result associated with the event. | AuthenticationEvent | ||
bubbles : Boolean [somente leitura]
Indica se um evento é do tipo bubbling. | Event | ||
cancelable : Boolean [somente leitura]
Indica se o comportamento associado ao evento pode ser impedido. | Event | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
currentTarget : Object [somente leitura]
O objeto que está processando ativamente o objeto Event com um ouvinte de evento. | Event | ||
eventPhase : uint [somente leitura]
A fase atual no fluxo de eventos. | Event | ||
target : Object [somente leitura]
O destino de evento. | Event | ||
type : String [somente leitura]
O tipo de evento. | Event |
Método | Definido por | ||
---|---|---|---|
AuthenticationEvent(type:String, authResult:IAuthResult = null, bubbles:Boolean = false, cancelable:Boolean = false)
Constructor. | AuthenticationEvent | ||
Duplica uma ocorrência de uma subclasse Event. | Event | ||
Uma função de utilitário para implementar o método toString() em classes ActionScript 3.0 Event personalizadas. | Event | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Verifica se o método preventDefault() foi chamado no evento. | Event | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Cancela um comportamento padrão de evento se esse comportamento puder ser cancelado. | Event | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Impede o processamento de qualquer ouvinte de evento no nó atual e qualquer nó subsequente no fluxo de eventos. | Event | ||
Impede o processamento de algum ouvinte de evento em nós subsequentes ao nó atual no fluxo de eventos. | Event | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna uma string que contém todas as propriedades do objeto Event. | Event | ||
Retorna o valor primitivo do objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
AUTHENTICATION_FAILED : String = "FAILED" [estático]
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" [estático]
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" [estático]
A special value that indicates that the authentication process was successful. | AuthenticationEvent | ||
LOGOUT_COMPLETE : String = "LOGGED_OUT" [estático]
A special value that indicates the type of event that is dispatched a user logs off. | AuthenticationEvent |
authResult | propriedade |
authResult:IAuthResult
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
The authentication result associated with the event. Depending on the event type, it can provide more details.
Implementação
public function get authResult():IAuthResult
AuthenticationEvent | () | Construtor |
public function AuthenticationEvent(type:String, authResult:IAuthResult = null, bubbles:Boolean = false, cancelable:Boolean = false)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | 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"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | 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"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | 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"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | 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"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | 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.
Wed Jun 13 2018, 11:10 AM Z