MCPcopy Index your code
hub / github.com/Q16G/memory-shell / reader

Class reader

src/main/java/org/example/webshellServer.java:79–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77 }
78
79 public static class reader {
80 private boolean success;
81 private byte[] data;
82
83 public reader(boolean success, byte[] data) {
84 this.success = success;
85 this.data = data;
86 }
87
88 public boolean isSuccess() {
89 return success;
90 }
91
92 public byte[] getData() {
93 return data;
94 }
95 }
96}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected