ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/jakarta/servlet/UnavailableException.java

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

      
    
Rootfs path

      
    
Size
5145 (5.0 KB)
MD5
f2f13d028ef12a57e787d04ea5e74c54
SHA1
9ddc4ec6562d094b4b3409fd8e1c13d618c1d0d9
SHA256
e00ab63875ca51b1ccfb7fcb6ebb1dcee4da0301a39dc51ce861d34edd15a695
SHA512

      
    
SHA1_git
300cf0c903406b7383a9c884356f5d7e0c4a5fbb
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
UnavailableException.java | 5.0 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 jakarta.servlet; import java.io.Serial; /** * Defines an exception that a servlet or filter throws to indicate that it is permanently or temporarily unavailable. * <p> * When a servlet or filter is permanently unavailable, something is wrong with it, and it cannot handle requests until * some action is taken. For example, a servlet might be configured incorrectly, or a filter's state may be corrupted. * The component should log both the error and the corrective action that is needed. * <p> * A servlet or filter is temporarily unavailable if it cannot handle requests momentarily due to some system-wide * problem. For example, a third-tier server might not be accessible, or there may be insufficient memory or disk * storage to handle requests. A system administrator may need to take corrective action. * <p> * Servlet containers can safely treat both types of unavailable exceptions in the same way. However, treating temporary * unavailability effectively makes the servlet container more robust. Specifically, the servlet container might block * requests to the servlet or filter for a period of time suggested by the exception, rather than rejecting them until * the servlet container restarts. */ public class UnavailableException extends ServletException { @Serial private static final long serialVersionUID = 1L; /** * Is the issue permanent - i.e. is administrator action required? */ private final boolean permanent; /** * The estimate of how long the Servlet will be unavailable. */ private final int seconds; /** * Constructs a new exception with a descriptive message indicating that the servlet is permanently unavailable. * * @param msg a <code>String</code> specifying the descriptive message */ public UnavailableException(String msg) { super(msg); seconds = 0; permanent = true; } /** * Constructs a new exception with a descriptive message indicating that the servlet is temporarily unavailable and * giving an estimate of how long it will be unavailable. * <p> * In some cases, the servlet cannot make an estimate. For example, the servlet might know that a server it needs is * not running, but not be able to report how long it will take to be restored to functionality. This can be * indicated with a negative or zero value for the <code>seconds</code> argument. * * @param msg a <code>String</code> specifying the descriptive message, which can be written to a log file or * displayed for the user. * @param seconds an integer specifying the number of seconds the servlet expects to be unavailable; if zero or * negative, indicates that the servlet can't make an estimate */ public UnavailableException(String msg, int seconds) { super(msg); if (seconds <= 0) { this.seconds = -1; } else { this.seconds = seconds; } permanent = false; } /** * Returns a <code>boolean</code> indicating whether the servlet is permanently unavailable. If so, something is * wrong with the servlet, and the system administrator must take some corrective action. * * @return <code>true</code> if the servlet is permanently unavailable; <code>false</code> if the servlet is * available or temporarily unavailable */ public boolean isPermanent() { return permanent; } /** * Returns the number of seconds the servlet expects to be temporarily unavailable. * <p> * If this method returns a negative number, the servlet is permanently unavailable or cannot provide an estimate of * how long it will be unavailable. No effort is made to correct for the time elapsed since the exception was first * reported. * * @return an integer specifying the number of seconds the servlet will be temporarily unavailable, or a negative * number if the servlet is permanently unavailable or cannot make an estimate */ public int getUnavailableSeconds() { return permanent ? -1 : seconds; } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
18.31
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