Specifies the authentication provider for Derby user authentication.
An external LDAP directory service.
Derby's simple internal user authentication repository.
A user-defined class that provides user authentication.
Alternatively, you can write your own class to provide a different external authentication service. This class must implement the public interface org.apache.derby.authentication.UserAuthenticator and throw exceptions of the type java.sql.SQLException where appropriate. Using a user-defined class makes Derby adaptable to various naming and directory services. For example, the class could allow Derby to hook up to an existing user authentication service that uses any of the standard directory and naming service providers to JNDI.
To enable any Derby user authentication, you must set the derby.connection.requireAuthentication property to true.
For more information about user authentication, see the Derby Developer's Guide.
derby.authentication.provider={ LDAP | BUILTIN | classProviderName }
BUILTIN
-- system-wide property derby.authentication.provider=LDAP -- database-wide property CALL SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY( 'derby.authentication.provider', 'BUILTIN')
Static. For system-wide properties, you must reboot Derby for the change to take effect. For database-wide properties, you must reboot the database for the change to take effect.