| Package | Description |
|---|---|
| de.aristaflow.adept2.base.security | |
| de.aristaflow.adept2.base.security.callbackhandler | |
| de.aristaflow.adept2.core.orgmodelmanager.extension |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<QualifiedAgent> |
Authentication.authenticate(java.lang.String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler)
Authenticates the agent identified by the designated authentication data with the designated
authentication method.
|
ClientSessionFactory |
Authentication.authenticate(java.lang.String agentName,
long orgPositionID,
java.lang.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(java.lang.String agentName,
long orgPositionID,
java.lang.String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler,
java.lang.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 |
GlobalSecurityManager.authenticate(java.lang.String agentName,
long orgPositionID,
java.lang.String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler,
java.lang.String userSessionID,
de.aristaflow.adept2.model.communication.InjectedCommContext context)
Authentication.authenticate(String, long, String, byte[], AFCallbackHandler, String) with an
additional injected communication context. |
java.util.List<QualifiedAgent> |
Authentication.authenticate(java.lang.String agentName,
java.lang.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.
|
java.util.List<QualifiedAgent> |
GlobalSecurityManager.authenticate(java.lang.String agentName,
java.lang.String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler,
de.aristaflow.adept2.model.communication.InjectedCommContext context)
Authentication.authenticate(String, String, byte[], AFCallbackHandler) with an additional injected
communication context. |
ClientSessionFactory[] |
Authentication.authenticateCombined(java.lang.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(java.lang.String agentName,
java.lang.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(java.lang.String agentName,
java.lang.String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler,
de.aristaflow.adept2.model.communication.InjectedCommContext context)
Authentication.authenticateCombined(String, String, byte[], AFCallbackHandler) with an additional
injected communication context. |
SessionFactory |
SecurityManager.authenticatePrivileged(java.lang.String agentName,
long orgPositionID,
java.lang.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.authenticatePrivileged(java.lang.String agentName,
long orgPositionID,
java.lang.String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler,
de.aristaflow.adept2.model.communication.InjectedCommContext context)
SecurityManager.authenticatePrivileged(String, long, String, byte[], AFCallbackHandler) with an
additional injected communication context. |
SessionFactory[] |
SecurityManager.authenticatePrivilegedCombined(java.lang.String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler)
Performs a combined authentication of a privileged agent that is
Authentication.authenticate(String, byte[], AFCallbackHandler) and
SecurityManager.authenticatePrivileged(String, long, String, byte[], AFCallbackHandler) in one step. |
SessionFactory[] |
SecurityManager.authenticatePrivilegedCombined(java.lang.String agentName,
java.lang.String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler)
Performs a combined authentication of a privileged agent that is
Authentication.authenticate(String, String, byte[], AFCallbackHandler) and
SecurityManager.authenticatePrivileged(String, long, String, byte[], AFCallbackHandler) in one step. |
SessionFactory[] |
GlobalSecurityManager.authenticatePrivilegedCombined(java.lang.String agentName,
java.lang.String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler,
de.aristaflow.adept2.model.communication.InjectedCommContext context)
SecurityManager.authenticatePrivilegedCombined(String, String, byte[], AFCallbackHandler) with an
additional injected communication context. |
| Modifier and Type | Class and Description |
|---|---|
class |
CallbackHandlerWrapper
A wrapper for
CallbackHandler treated as
AFCallbackHandler. |
class |
NameAppNameHandler
This handler provides the means to handle
NameCallback and AppNameCallback. |
class |
NameHandler
A simple callback handler providing a name to the appropriate callbacks
(
NameCallback) if required. |
class |
NameOrgPosSesIDAppNameHandler
This handler provides the means to handle
NameCallback,
OrgPositionChoiceCallback, AppNameCallback, and
UserSessionIDCallback. |
class |
NamePasswordHandler
A simple callback handler providing a name and a password to the appropriate
callbacks (
NameCallback and PasswordCallback) if
required. |
class |
NameStoringHandler
A wrapping callback handler storing the name provided to a
NameCallback. |
class |
PasswordHandler
A simple callback handler providing a password to the appropriate callback
(
PasswordCallback) if required. |
| Modifier and Type | Field and Description |
|---|---|
protected AFCallbackHandler |
NameHandler.furtherHandling
The callback handler for all other callbacks.
|
protected AFCallbackHandler |
NamePasswordHandler.furtherHandling
The callback handler for all other callbacks.
|
protected AFCallbackHandler |
PasswordHandler.furtherHandling
The callback handler for all other callbacks.
|
protected AFCallbackHandler |
AFCallbackHandlerWrapper.handler
The handler to which all callback requests are forwarded.
|
protected AFCallbackHandler |
NameStoringHandler.wrapped
The callback handler for all callbacks.
|
| Constructor and Description |
|---|
AFCallbackHandlerWrapper(AFCallbackHandler handler)
Creates a new
CallbackHandler that wraps the designated
AFCallbackHandler appropriately. |
NameHandler(java.lang.String name,
AFCallbackHandler furtherHandling)
Creates a callback handler providing the designated name to the appropriate
callbacks.
|
NamePasswordHandler(java.lang.String name,
java.lang.String password,
AFCallbackHandler furtherHandling)
Creates a callback handler providing the designated name and password to
the appropriate callbacks.
|
NameStoringHandler(AFCallbackHandler wrapped)
Creates a callback handler storing the name provided to a
NameCallback
by the wrapped AFCallbackHandler. |
PasswordHandler(java.lang.String password,
AFCallbackHandler furtherHandling)
Creates a callback handler providing the designated password to the
appropriate callbacks.
|
| Modifier and Type | Method and Description |
|---|---|
protected abstract boolean |
AbstractOrgModelExtension.authenticate_(java.lang.String agentName,
java.lang.String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler)
As documented in
OrgModelExtension.authenticate(String, String, byte[], AFCallbackHandler)
. |
boolean |
AbstractOrgModelExtension.authenticate(java.lang.String agentName,
java.lang.String method,
byte[] authenticationData,
AFCallbackHandler callbackHandler) |
boolean |
OrgModelExtension.authenticate(java.lang.String agentName,
java.lang.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.
|