ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/tribes/membership/cloud/TokenStreamProvider.java

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

      
    
Rootfs path

      
    
Size
2335 (2.3 KB)
MD5
9b34c7317158b3e25265aaeecc427f82
SHA1
64ff47937d680ce1d37ff470f807e4ab27e068bb
SHA256
0294267266c2d80557489372ac4ffde23dffdb11f88f807ef7503e7caecd75a8
SHA512

      
    
SHA1_git
579bdeb5edc9cf310ba5279505a1345e2357f9c8
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TokenStreamProvider.java | 2.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.tribes.membership.cloud; import java.io.IOException; import java.io.InputStream; import java.util.Map; import javax.net.ssl.SSLContext; import javax.net.ssl.SSLSocketFactory; import javax.net.ssl.TrustManager; public class TokenStreamProvider extends AbstractStreamProvider { private String token; private final SSLSocketFactory factory; TokenStreamProvider(String token, String caCertFile) throws Exception { this.token = token; TrustManager[] trustManagers = configureCaCert(caCertFile); SSLContext context = SSLContext.getInstance("TLS"); context.init(null, trustManagers, null); this.factory = context.getSocketFactory(); } @Override protected SSLSocketFactory getSocketFactory() { return factory; } protected void setToken(String token) { this.token = token; } @Override public InputStream openStream(String url, Map<String,String> headers, int connectTimeout, int readTimeout) throws IOException { // Set token header if (token != null) { headers.put("Authorization", "Bearer " + token); } try { return super.openStream(url, headers, connectTimeout, readTimeout); } catch (IOException ioe) { // Add debug information throw new IOException(sm.getString("tokenStream.failedConnection", url, token), ioe); } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
46.3
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