A standalone custom registry is a customer-implemented registry that implements the UserRegistry Java interface, as provided by the product. A custom-implemented registry can support virtually any type of an account repository from a relational database, flat file, and so on. The custom user registry provides considerable flexibility in adapting product security to various environments where some form of a registry or repository other than federated repositories, standalone Lightweight Directory Access Protocol (LDAP) registry or local operating system registry already exists in the operational environment.
WebSphere Application Server security provides an implementation that uses various local operating system-based registries and various standalone Lightweight Directory Access Protocol (LDAP)-based registries. However, situations can exist where your user and group data resides in other repositories or custom user registries, such as a database, and moving this information to either a local operating system registry or a standalone LDAP registry implementation might not be feasible. For these situations, WebSphere Application Server security provides a service provider interface (SPI) that you can implement to interact with your current registry. The custom registry feature supports any user registry that is not implemented by WebSphere Application Server.
The SPI is the UserRegistry interface. The UserRegistry interface is a collection of methods that are required for authorization purposes. These methods authenticate individual users using either a password or certificates and collect information about the user, which are called privilege attributes. This interface also includes methods that obtain user and group information so that they can be given access to resources. When implementing the methods in the interface, decide how to map the information that is manipulated by the UserRegistry interface to the information in your registry.
This interface has a set of methods to implement for the product security to interact with your registries for all security-related tasks. The local operating system and LDAP registry implementations that are provided also implement this interface. Custom user registries are sometimes called the pluggable user registries or custom registries for short. Your custom user registry implementation is expected to be thread-safe.
Building a custom registry is a software implementation effort. The implementation does not depend on other WebSphere Application Server resources, for example, data sources, for its operation.
Verify your implementation of the custom registry does not depend on any WebSphere Application Server components such as data sources, enterprise beans, and so on. Do not have this dependency because security is initialized and enabled prior to most of the other WebSphere Application Server components during startup. If your previous implementation used these components, make a change that eliminates the dependency. The methods in the UserRegistry interface operate on the following information for users:
The topic on UserRegistry
interface describes each of the methods in the interface that need
implementing. An explanation of each of the methods and their usage in the
sample and any changes from the V4 interface are provided. The Related
references section provides links to all other custom user registries documentation,
including a file-based registry sample. The Sample provided is very simple
and is intended to familiarize you with this feature. Do not use this sample
in an actual production environment.