List<QualifiedAgent> |
Authentication.authenticate(String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler) |
Authenticates the agent identified by the designated authentication data with the designated
authentication method.
|
ClientSessionFactory |
Authentication.authenticate(String agentName,
long orgPositionID,
String password) |
Identifies and authenticates a normal user via the corresponding name,
orgPosition and the password and returns an appropriate
ClientSessionFactory as which encapsulates the security
information for the designated agent.
|
ClientSessionFactory |
Authentication.authenticate(String agentName,
long orgPositionID,
String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler) |
Identifies and authenticates the designated agent by the corresponding name and ID referring to
the appropriate QualifedAgent with the designated authentication method providing
the authentication method-specific data.
|
ClientSessionFactory |
Authentication.authenticate(String agentName,
long orgPositionID,
String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler,
String userSessionID) |
Identifies and authenticates the designated agent by the corresponding name and ID referring to
the appropriate QualifedAgent with the designated authentication method providing
the authentication method-specific data.
|
ClientSessionFactory |
Authentication.authenticate(String agentName,
long orgPositionID,
String password,
String userSessionID) |
Identifies and authenticates a normal user via the corresponding name,
orgPosition and the password and returns an appropriate
ClientSessionFactory as which encapsulates the security
information for the designated agent.
|
List<QualifiedAgent> |
Authentication.authenticate(String agentName,
String password) |
Like the name implies, this method's job is to authenticate agents, i.e.
|
List<QualifiedAgent> |
Authentication.authenticate(String agentName,
String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler) |
Authenticates the designated agent by the corresponding name with the designated authentication
method providing the authentication method-specific data.
|
ClientSessionFactory |
GlobalSecurityManager.authenticate(String agentName,
long orgPositionID,
String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler,
String userSessionID,
de.aristaflow.adept2.model.communication.InjectedCommContext context) |
|
List<QualifiedAgent> |
GlobalSecurityManager.authenticate(String agentName,
String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler,
de.aristaflow.adept2.model.communication.InjectedCommContext context) |
|
ClientSessionFactory[] |
Authentication.authenticateCombined(String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler) |
Performs a combined authentication that is
Authentication.authenticate(String, byte[], AFCallbackHandler) and
Authentication.authenticate(String, long, String, byte[], AFCallbackHandler) or
Authentication.authenticate(String, long, String, byte[], AFCallbackHandler, String) in one step.
|
ClientSessionFactory[] |
Authentication.authenticateCombined(String agentName,
String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler) |
Performs a combined authentication that is
Authentication.authenticate(String, String, byte[], AFCallbackHandler) and
Authentication.authenticate(String, long, String, byte[], AFCallbackHandler) or
Authentication.authenticate(String, long, String, byte[], AFCallbackHandler, String) in one step.
|
ClientSessionFactory[] |
GlobalSecurityManager.authenticateCombined(String agentName,
String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler,
de.aristaflow.adept2.model.communication.InjectedCommContext context) |
|
SessionFactory |
GlobalSecurityManager.authenticatePrivileged(String agentName,
long orgPositionID,
String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler,
de.aristaflow.adept2.model.communication.InjectedCommContext context) |
|
SessionFactory |
SecurityManager.authenticatePrivileged(String agentName,
long orgPositionID,
String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler) |
Identifies and authenticates a privileged agent (for instance a system component) by the
corresponding name and ID referring to the appropriate QualifedAgent with the
designated authentication method providing the authentication method-specific data.
|
SessionFactory[] |
GlobalSecurityManager.authenticatePrivilegedCombined(String agentName,
String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler,
de.aristaflow.adept2.model.communication.InjectedCommContext context) |
|
SessionFactory[] |
SecurityManager.authenticatePrivilegedCombined(String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler) |
|
SessionFactory[] |
SecurityManager.authenticatePrivilegedCombined(String agentName,
String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler) |
|
void |
Authentication.logoff(SessionToken session) |
Logs the agent off that is identified by the designated
SessionToken .
|