Class SimpleAuthConfigProvider
- java.lang.Object
-
- org.apache.catalina.authenticator.jaspic.SimpleAuthConfigProvider
-
- All Implemented Interfaces:
AuthConfigProvider
public class SimpleAuthConfigProvider extends Object implements AuthConfigProvider
Basic implementation primarily intended for use when using third-partyServerAuthModule
implementations that only provide the module.
-
-
Constructor Summary
Constructors Constructor Description SimpleAuthConfigProvider(Map<String,Object> properties, AuthConfigFactory factory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ServerAuthConfig
createServerAuthConfig(String layer, String appContext, CallbackHandler handler, Map<String,Object> properties)
ClientAuthConfig
getClientAuthConfig(String layer, String appContext, CallbackHandler handler)
ServerAuthConfig
getServerAuthConfig(String layer, String appContext, CallbackHandler handler)
void
refresh()
-
-
-
Constructor Detail
-
SimpleAuthConfigProvider
public SimpleAuthConfigProvider(Map<String,Object> properties, AuthConfigFactory factory)
-
-
Method Detail
-
getClientAuthConfig
public ClientAuthConfig getClientAuthConfig(String layer, String appContext, CallbackHandler handler) throws AuthException
This implementation does not support client-side authentication and therefore always returns
null
.- Specified by:
getClientAuthConfig
in interfaceAuthConfigProvider
- Throws:
AuthException
-
getServerAuthConfig
public ServerAuthConfig getServerAuthConfig(String layer, String appContext, CallbackHandler handler) throws AuthException
- Specified by:
getServerAuthConfig
in interfaceAuthConfigProvider
- Throws:
AuthException
-
createServerAuthConfig
protected ServerAuthConfig createServerAuthConfig(String layer, String appContext, CallbackHandler handler, Map<String,Object> properties)
-
refresh
public void refresh()
- Specified by:
refresh
in interfaceAuthConfigProvider
-
-