Constructor
new CustomLogin(context, authenticate)
- Source:
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | |
authenticate |
CustomLogin~authenticateCallback |
Classes
Methods
authenticate(serverUrl, successopt, failureopt) → {boolean}
- Source:
Authenticates against a PMA.core server. This method is usually invoked by the context itself and should rarely be used outside it.
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
serverUrl |
string | The URL of the PMA.core server to authenticate against | |
success |
function |
<optional> |
|
failure |
function |
<optional> |
Returns:
True or false depending on whether this instance has enough information to authenticate against this PMA.core server
- Type
- boolean
Type Definitions
authenticateCallback(serverUrl, successopt, failureopt) → {boolean}
- Source:
The callback function used to authenticate to a server url
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
serverUrl |
string | The URL of the PMA.core server to authenticate against | |
success |
CustomLogin~authenticateSuccess |
<optional> |
|
failure |
CustomLogin~authenticateError |
<optional> |
Returns:
True or false depending on whether this instance has enough information to authenticate against this PMA.core server
- Type
- boolean
authenticateError(error)
- Source:
This callback should be called when the authentication to a server failed
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
error |
object | The error occured when trying to authenticate to the server
Properties
|
authenticateSuccess(sessionID)
- Source:
This callback should be called when the authentication to a server was successfull
Parameters:
Name | Type | Description |
---|---|---|
sessionID |
string | The session id acquired by authenticating to the server |