Creates a
DOFAuthenticator
that uses the specified configuration. The DOFAuthenticator class must be implemented on
nodes that need to perform as Authentication Servers. All secure domains must have at least one Authentication Server.
Each authenticator created must be destroyed when it is no longer needed. See
DOFAuthenticator.destroy()
and
destroy()
.
Namespace: org.opendof.core.oal
Assembly: dof-oal (in dof-oal.dll) Version: 7.0.1.2
Syntax
C#
public DOFAuthenticator createAuthenticator( DOFAuthenticatorConfig authConfig )
Parameters
- authConfig
- Type: org.opendof.core.oalDOFAuthenticatorConfig
An instance of Config that represents a source of configuration parameters for the DOFAuthenticator. Use Builder to create an instance of DOFAuthenticator.Config. This must not be null.
Return Value
Type: DOFAuthenticatorA new instance of DOFAuthenticator. The return value will be null if the configuration is invalid or if the DOF cannot accept the new DOFAuthenticator.
See Also