mirror of
https://github.com/Qortal/qortal.git
synced 2025-06-07 00:36:59 +00:00
ADDED: api.Security (implementation needed) ADDED: api.APIErrorFactory CHANGED: added command execution to ApiClient
11 lines
210 B
Java
11 lines
210 B
Java
package api;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
public class Security {
|
|
|
|
public static void checkApiCallAllowed(final String messageToDisplay, HttpServletRequest request) {
|
|
// TODO
|
|
}
|
|
}
|