mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
21 lines
497 B
Java
Generated
21 lines
497 B
Java
Generated
// Generated automatically from javax.servlet.http.Part for testing purposes
|
|
|
|
package javax.servlet.http;
|
|
|
|
import java.io.InputStream;
|
|
import java.util.Collection;
|
|
|
|
public interface Part
|
|
{
|
|
Collection<String> getHeaderNames();
|
|
Collection<String> getHeaders(String p0);
|
|
InputStream getInputStream();
|
|
String getContentType();
|
|
String getHeader(String p0);
|
|
String getName();
|
|
String getSubmittedFileName();
|
|
long getSize();
|
|
void delete();
|
|
void write(String p0);
|
|
}
|