ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/ContextBind.java

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

      
    
Rootfs path

      
    
Size
4313 (4.2 KB)
MD5
710a1ed82abf7d467593eceda45f2ab8
SHA1
c39ca35cb4c430b12798a93e07a1ddb9135daef1
SHA256
0df9834e413512cfe4a36c630211e9fa244915cdda6fe8225b4ab48b67bbcfd1
SHA512

      
    
SHA1_git
3dae9ac6a8959a4a4a352ee2e2c60970439f7e1a
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
ContextBind.java | 4.2 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.tomcat; public interface ContextBind { /** * Change the current thread context class loader to the web application class loader. If no web application class * loader is defined, or if the current thread is already using the web application class loader then no change will * be made. If the class loader is changed and a {@link org.apache.catalina.ThreadBindingListener} is configured * then {@link org.apache.catalina.ThreadBindingListener#bind()} will be called after the change has been made. * * @param originalClassLoader The current class loader if known to save this method having to look it up * * @return If the class loader has been changed by the method it will return the thread context class loader in use * when the method was called. If no change was made then this method returns null. */ ClassLoader bind(ClassLoader originalClassLoader); /** * Restore the current thread context class loader to the original class loader in used before * {@link #bind(boolean, ClassLoader)} was called. If no original class loader is passed to this method then no * change will be made. If the class loader is changed and a {@link org.apache.catalina.ThreadBindingListener} is * configured then {@link org.apache.catalina.ThreadBindingListener#unbind()} will be called before the change is * made. * * @param originalClassLoader The class loader to restore as the thread context class loader */ void unbind(ClassLoader originalClassLoader); /** * Change the current thread context class loader to the web application class loader. If no web application class * loader is defined, or if the current thread is already using the web application class loader then no change will * be made. If the class loader is changed and a {@link org.apache.catalina.ThreadBindingListener} is configured * then {@link org.apache.catalina.ThreadBindingListener#bind()} will be called after the change has been made. * * @param usePrivilegedAction Unused * @param originalClassLoader The current class loader if known to save this method having to look it up * * @return If the class loader has been changed by the method it will return the thread context class loader in use * when the method was called. If no change was made then this method returns null. * * @deprecated Unused. Will be removed in Tomcat 12 onwards. */ @Deprecated ClassLoader bind(boolean usePrivilegedAction, ClassLoader originalClassLoader); /** * Restore the current thread context class loader to the original class loader in used before * {@link #bind(boolean, ClassLoader)} was called. If no original class loader is passed to this method then no * change will be made. If the class loader is changed and a {@link org.apache.catalina.ThreadBindingListener} is * configured then {@link org.apache.catalina.ThreadBindingListener#unbind()} will be called before the change is * made. * * @param usePrivilegedAction Unused * @param originalClassLoader The class loader to restore as the thread context class loader * * @deprecated Unused. Will be removed in Tomcat 12 onwards. */ @Deprecated void unbind(boolean usePrivilegedAction, ClassLoader originalClassLoader); }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
21.72
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