mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
9 lines
201 B
Java
9 lines
201 B
Java
package security.library.dataflow;
|
|
|
|
import java.rmi.Remote;
|
|
import java.rmi.RemoteException;
|
|
|
|
public interface RmiFlow extends Remote {
|
|
String listDirectory(String path) throws java.io.IOException;
|
|
}
|