apache > db
Apache DB Project
 
Font size:      

derby.authentication.provider

derby.authentication.provider

Function

Specifies the authentication provider for Derby user authentication.

Legal values include:

  • LDAP

    An external LDAP directory service.

  • BUILTIN

    Derby's simple internal user authentication repository.

  • a complete Java class name

    A user-defined class that provides user authentication.

When using an external authentication service provider (LDAP), you must also set:

  • derby.authentication.server

When using LDAP, you can set other LDAP-specific properties. See also:

  • derby.authentication.ldap.searchAuthDN
  • derby.authentication.ldap.searchAuthPW
  • derby.authentication.ldap.searchFilter
  • derby.authentication.ldap.searchBase

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.

Syntax

derby.authentication.provider={
    LDAP |
    BUILTIN |
    classProviderName }

Default

BUILTIN

Examples

-- system-wide property 
derby.authentication.provider=LDAP
 -- database-wide property 
CALL SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY(
    'derby.authentication.provider',
    'BUILTIN')

Dynamic or static

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.


Previous Page
Next Page
Table of Contents
Index