This interface defines the common functionality implemented by Authentication context configuration objects.
162163164165166167168169170171172
return null; } protected AuthConfig getAuthConfig(AuthConfigProvider p, boolean isServer) throws AuthException { AuthConfig c = null; if (p != null) { if (isServer) { c = p.getServerAuthConfig(layer, appCtxt, cbh); } else { c = p.getClientAuthConfig(layer, appCtxt, cbh);
176177178179180181182183184185186
} protected AuthConfig getAuthConfig(boolean isServer) throws AuthException { ConfigData d = null; AuthConfig c = null; boolean disabled = false; AuthConfigProvider lastP = null; try { rLock.lock();
169170171172173174175176177178179
183184185186187188189190191192193