public class PrivateInvoker extends SimpleInvoker
| Modifier and Type | Field and Description |
|---|---|
private static long |
serialVersionUID |
| Constructor and Description |
|---|
PrivateInvoker(java.lang.Object target)
Construct a PrivateInvoker.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
invoke(java.lang.Object proxy,
java.lang.reflect.Method method,
java.lang.Object[] args)
Invocation of a method of the proxied object.
|
getTargetprivate static final long serialVersionUID
public PrivateInvoker(java.lang.Object target)
target - the invocation target.public java.lang.Object invoke(java.lang.Object proxy,
java.lang.reflect.Method method,
java.lang.Object[] args)
throws java.lang.Throwable
Invokerinvoke in interface Invokerinvoke in class SimpleInvokerproxy - the proxy instance.method - the method to invoke.args - the arguments of the method.java.lang.Throwable - if the invoked method has thrown.