MCPcopy Create free account
hub / github.com/Ape1ron/SpringAopInDeserializationDemo1 / Proxy

Class Proxy

src/main/java/Proxy.java:3–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import java.lang.reflect.InvocationHandler;
2
3public class Proxy {
4
5 public static Object makeGadget(InvocationHandler handler, Class... classes) throws Exception {
6 return java.lang.reflect.Proxy.newProxyInstance(Proxy.class.getClassLoader(), classes, handler);
7 }
8}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected