MCPcopy Create free account
hub / github.com/baidu/openrasp / Module

Interface Module

agent/java/boot/src/main/java/com/baidu/openrasp/Module.java:27–39  ·  view source on GitHub ↗

Created by tyy on 18-2-1. 每个子模块入口都需要继承的模块 模块入口类 配置在子模块 jar 包的 MANIFEST 配置中

Source from the content-addressed store, hash-verified

25 * 模块入口类 配置在子模块 jar 包的 MANIFEST 配置中
26 */
27public interface Module {
28
29 String START_MODE_ATTACH = "attach";
30 String START_MODE_NORMAL = "normal";
31
32 String START_ACTION_INSTALL = "install";
33 String START_ACTION_UNINSTALL = "uninstall";
34
35 void start(String mode, Instrumentation inst) throws Throwable;
36
37 void release(String mode) throws Throwable;
38
39}

Callers 11

PHP_MINIT_FUNCTIONFunction · 0.65
fsw_start_monitorFunction · 0.65
mainMethod · 0.65
fireConnectorMethod · 0.65
KeepAliveMethod · 0.65
startMethod · 0.65
initMethod · 0.65
RegisterMethod · 0.65
releaseMethod · 0.65
releaseMethod · 0.65
releaseMethod · 0.65

Implementers 3

EngineBootagent/java/engine/src/main/java/com/ba
ModuleContaineragent/java/boot/src/main/java/com/baid
CpuMonitorManageragent/java/engine/src/main/java/com/ba

Calls

no outgoing calls

Tested by

no test coverage detected