Package com.ibm.wsspi.security.jaspi
Interface ProviderService
- 
 public interface ProviderServiceThis is the OSGI service interface that a JASPI provider bundle must provide to run on the WebSphere application server Liberty profile.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.security.auth.message.config.AuthConfigProvidergetAuthConfigProvider(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- 
getAuthConfigProviderjavax.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
 
 
- 
 
-