Class JaspiAuthConfigProvider

java.lang.Object
org.eclipse.jetty.security.jaspi.provider.JaspiAuthConfigProvider
All Implemented Interfaces:
javax.security.auth.message.config.AuthConfigProvider

public class JaspiAuthConfigProvider extends Object implements javax.security.auth.message.config.AuthConfigProvider

A Jetty implementation of the AuthConfigProvider to allow registration of a ServerAuthModule directly without having to write a custom AuthConfigProvider.

If this is being constructed by an AuthConfigFactory after being passed in as a className, then you will need to provide the property ServerAuthModule containing the fully qualified name of the ServerAuthModule class you wish to use.

  • Constructor Details

    • JaspiAuthConfigProvider

      public JaspiAuthConfigProvider(Map properties, javax.security.auth.message.config.AuthConfigFactory factory)

      Constructor with signature and implementation that's required by API.

      The property map must contain the ServerAuthModule property containing the fully qualified name of the ServerAuthModule class you wish to use. If this constructor is being used for self-registration an optional property of appContext can be used specify the appContext value to register the provider.

      Parameters:
      properties - A Map of initialization properties.
      factory - The AuthConfigFactory to register on.
    • JaspiAuthConfigProvider

      public JaspiAuthConfigProvider(String className)
      Parameters:
      className - The fully qualified name of a ServerAuthModule class.
    • JaspiAuthConfigProvider

      public JaspiAuthConfigProvider(String className, Map properties)
      Parameters:
      className - The fully qualified name of a ServerAuthModule class.
      properties - A Map of initialization properties.
    • JaspiAuthConfigProvider

      public JaspiAuthConfigProvider(javax.security.auth.message.module.ServerAuthModule serverAuthModule)
      Parameters:
      serverAuthModule - The instance of ServerAuthModule to use.
    • JaspiAuthConfigProvider

      public JaspiAuthConfigProvider(javax.security.auth.message.module.ServerAuthModule serverAuthModule, Map properties)
      Parameters:
      serverAuthModule - The instance of ServerAuthModule to use.
      properties - A Map of initialization properties.
  • Method Details

    • getClientAuthConfig

      public javax.security.auth.message.config.ClientAuthConfig getClientAuthConfig(String layer, String appContext, CallbackHandler handler)
      Specified by:
      getClientAuthConfig in interface javax.security.auth.message.config.AuthConfigProvider
    • getServerAuthConfig

      public javax.security.auth.message.config.ServerAuthConfig getServerAuthConfig(String layer, String appContext, CallbackHandler handler)
      Specified by:
      getServerAuthConfig in interface javax.security.auth.message.config.AuthConfigProvider
    • refresh

      public void refresh()
      Specified by:
      refresh in interface javax.security.auth.message.config.AuthConfigProvider