mirror of
https://github.com/github/codeql.git
synced 2026-02-27 20:33:42 +01:00
Includes models-as-data rows, flow sources, and XSS sanitizers. Tests for models-as-data rows not included.
35 lines
719 B
Java
Generated
35 lines
719 B
Java
Generated
package hudson;
|
|
|
|
import java.io.File;
|
|
import java.io.InputStream;
|
|
import java.nio.file.OpenOption;
|
|
|
|
public class FilePath {
|
|
|
|
public static InputStream newInputStreamDenyingSymlinkAsNeeded(File file,
|
|
String verificationRoot, OpenOption... openOption) {
|
|
return null;
|
|
}
|
|
|
|
public static InputStream openInputStream(File file, OpenOption[] openOptions) {
|
|
return null;
|
|
}
|
|
|
|
public InputStream read() {
|
|
return null;
|
|
}
|
|
|
|
public InputStream read(FilePath rootPath, OpenOption... openOptions) {
|
|
return null;
|
|
}
|
|
|
|
public InputStream readFromOffset(long offset) {
|
|
return null;
|
|
}
|
|
|
|
public String readToString() {
|
|
return null;
|
|
}
|
|
}
|
|
|