ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/authenticator/jaspic/SimpleServerAuthConfig.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/authenticator/jaspic/SimpleServerAuthConfig.java
Status
scanned
Type
file
Name
SimpleServerAuthConfig.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
5453 (5.3 KB)
MD5
c6b27b8c97f03c05a51231ee10879c62
SHA1
f5832ddd24732d3c8a63947fc14b5d504c5248ca
SHA256
580a7368c5aad4b0a99c5a5b105e67200cb603587f24d0530a03bb904ecda8ca
SHA512

      
    
SHA1_git
868d7f40416e830f6f8de8e50a8b267adc76461c
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
SimpleServerAuthConfig.java | 5.3 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.catalina.authenticator.jaspic; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.security.auth.Subject; import javax.security.auth.callback.CallbackHandler; import jakarta.security.auth.message.AuthException; import jakarta.security.auth.message.MessageInfo; import jakarta.security.auth.message.config.ServerAuthConfig; import jakarta.security.auth.message.config.ServerAuthContext; import jakarta.security.auth.message.module.ServerAuthModule; import org.apache.tomcat.util.res.StringManager; /** * Basic implementation primarily intended for use when using third-party {@link ServerAuthModule} implementations that * only provide the module. This implementation supports configuring the {@link ServerAuthContext} with multiple * modules. */ public class SimpleServerAuthConfig implements ServerAuthConfig { private static final StringManager sm = StringManager.getManager(SimpleServerAuthConfig.class); private static final String SERVER_AUTH_MODULE_KEY_PREFIX = "org.apache.catalina.authenticator.jaspic.ServerAuthModule."; private final String layer; private final String appContext; private final CallbackHandler handler; private final Map<String,Object> properties; private volatile ServerAuthContext serverAuthContext; public SimpleServerAuthConfig(String layer, String appContext, CallbackHandler handler, Map<String,Object> properties) { this.layer = layer; this.appContext = appContext; this.handler = handler; this.properties = properties; } @Override public String getMessageLayer() { return layer; } @Override public String getAppContext() { return appContext; } @Override public String getAuthContextID(MessageInfo messageInfo) { return messageInfo.toString(); } @Override public void refresh() { serverAuthContext = null; } @Override public boolean isProtected() { return false; } @Override public ServerAuthContext getAuthContext(String authContextID, Subject serviceSubject, Map<String,Object> properties) throws AuthException { ServerAuthContext serverAuthContext = this.serverAuthContext; if (serverAuthContext == null) { synchronized (this) { if (this.serverAuthContext == null) { Map<String,Object> mergedProperties = new HashMap<>(); if (this.properties != null) { mergedProperties.putAll(this.properties); } if (properties != null) { mergedProperties.putAll(properties); } List<ServerAuthModule> modules = new ArrayList<>(); int moduleIndex = 1; String key = SERVER_AUTH_MODULE_KEY_PREFIX + moduleIndex; Object moduleClassName = mergedProperties.get(key); while (moduleClassName instanceof String) { try { Class<?> clazz = Class.forName((String) moduleClassName); ServerAuthModule module = (ServerAuthModule) clazz.getConstructor().newInstance(); module.initialize(null, null, handler, mergedProperties); modules.add(module); } catch (ReflectiveOperationException | IllegalArgumentException | SecurityException e) { throw new AuthException(e); } // Look for the next module moduleIndex++; key = SERVER_AUTH_MODULE_KEY_PREFIX + moduleIndex; moduleClassName = mergedProperties.get(key); } if (modules.isEmpty()) { throw new AuthException(sm.getString("simpleServerAuthConfig.noModules")); } this.serverAuthContext = createServerAuthContext(modules); } serverAuthContext = this.serverAuthContext; } } return serverAuthContext; } protected ServerAuthContext createServerAuthContext(List<ServerAuthModule> modules) { return new SimpleServerAuthContext(modules); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
25.16
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9