Interface ProviderService


public interface ProviderService
This is the OSGI service interface that a JASPI provider bundle must provide to run on the WebSphere application server Liberty profile.
  • Method Summary

    Modifier and Type
    Method
    Description
    jakarta.security.auth.message.config.AuthConfigProvider
    getAuthConfigProvider(jakarta.security.auth.message.config.AuthConfigFactory factory)
    This method is called to construct the AuthConfigProvider by invoking the JSR-196 defined constructor of the AuthConfigProvider:
  • Method Details

    • getAuthConfigProvider

      jakarta.security.auth.message.config.AuthConfigProvider getAuthConfigProvider(jakarta.security.auth.message.config.AuthConfigFactory factory)
      This method is called to construct the AuthConfigProvider by invoking the JSR-196 defined constructor of the AuthConfigProvider:

      public MyAuthConfigProviderImpl(java.util.Map properties, AuthConfigFactory factory);

      This method may read it's own provider configuration properties and and pass them to the constructor.

      Parameters:
      factory - An AuthConfigFactory instance
      Returns:
      An object instance that implements AuthConfigProvider