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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      javax.security.auth.message.config.AuthConfigProvider getAuthConfigProvider​(javax.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 Detail

      • getAuthConfigProvider

        javax.security.auth.message.config.AuthConfigProvider getAuthConfigProvider​(javax.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