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

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

      
    
Rootfs path

      
    
Size
2401 (2.3 KB)
MD5
c1168a8e6c504ce3f8c3bb28e5d5a667
SHA1
8b6203d7f9f3e88e874111c4e944fde4d9e5fd99
SHA256
c3d140565345bc28d11c41558a1ab5ebf57ced44992c99713c0d4088bc45af3f
SHA512

      
    
SHA1_git
abed3f68227c39efbdd48d65f52cb07dc2fb1d30
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
MultipartConfig.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 jakarta.servlet.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * This annotation is used to indicate that the {@link jakarta.servlet.Servlet} on which it is declared expects requests * to be made using the {@code multipart/form-data} MIME type. <br> * <br> * {@link jakarta.servlet.http.Part} components of a given {@code * multipart/form-data} request are retrieved by a Servlet annotated with {@code MultipartConfig} by calling * {@link jakarta.servlet.http.HttpServletRequest#getPart} or * {@link jakarta.servlet.http.HttpServletRequest#getParts}.<br> * <br> * E.g. <code>@WebServlet("/upload")}</code><br> * <code>@MultipartConfig()</code> <code>public class UploadServlet extends * HttpServlet ... } </code><br> * * @since Servlet 3.0 */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface MultipartConfig { /** * @return location in which the Container stores temporary files */ String location() default ""; /** * @return the maximum size allowed for uploaded files (in bytes) */ long maxFileSize() default -1L; /** * @return the maximum size of the request allowed for {@code * multipart/form-data} */ long maxRequestSize() default -1L; /** * @return the size threshold at which the file will be written to the disk */ int fileSizeThreshold() default 0; }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
39.93
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