mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
18 lines
617 B
Java
Generated
18 lines
617 B
Java
Generated
// Generated automatically from javax.servlet.MultipartConfigElement for testing purposes
|
|
|
|
package javax.servlet;
|
|
|
|
import javax.servlet.annotation.MultipartConfig;
|
|
|
|
public class MultipartConfigElement
|
|
{
|
|
protected MultipartConfigElement() {}
|
|
public MultipartConfigElement(MultipartConfig p0){}
|
|
public MultipartConfigElement(String p0){}
|
|
public MultipartConfigElement(String p0, long p1, long p2, int p3){}
|
|
public String getLocation(){ return null; }
|
|
public int getFileSizeThreshold(){ return 0; }
|
|
public long getMaxFileSize(){ return 0; }
|
|
public long getMaxRequestSize(){ return 0; }
|
|
}
|