Class SimpleServerAuthConfig
- java.lang.Object
-
- org.apache.catalina.authenticator.jaspic.SimpleServerAuthConfig
-
- All Implemented Interfaces:
AuthConfig
,ServerAuthConfig
public class SimpleServerAuthConfig extends Object implements ServerAuthConfig
Basic implementation primarily intended for use when using third-partyServerAuthModule
implementations that only provide the module. This implementation supports configuring theServerAuthContext
with multiple modules.
-
-
Constructor Summary
Constructors Constructor Description SimpleServerAuthConfig(String layer, String appContext, CallbackHandler handler, Map<String,String> properties)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ServerAuthContext
createServerAuthContext(List<ServerAuthModule> modules)
String
getAppContext()
ServerAuthContext
getAuthContext(String authContextID, Subject serviceSubject, Map properties)
String
getAuthContextID(MessageInfo messageInfo)
String
getMessageLayer()
boolean
isProtected()
void
refresh()
-
-
-
Method Detail
-
getMessageLayer
public String getMessageLayer()
- Specified by:
getMessageLayer
in interfaceAuthConfig
-
getAppContext
public String getAppContext()
- Specified by:
getAppContext
in interfaceAuthConfig
-
getAuthContextID
public String getAuthContextID(MessageInfo messageInfo)
- Specified by:
getAuthContextID
in interfaceAuthConfig
-
refresh
public void refresh()
- Specified by:
refresh
in interfaceAuthConfig
-
isProtected
public boolean isProtected()
- Specified by:
isProtected
in interfaceAuthConfig
-
getAuthContext
public ServerAuthContext getAuthContext(String authContextID, Subject serviceSubject, Map properties) throws AuthException
- Specified by:
getAuthContext
in interfaceServerAuthConfig
- Throws:
AuthException
-
createServerAuthContext
protected ServerAuthContext createServerAuthContext(List<ServerAuthModule> modules)
-
-