PrivilegedGetMethodpublic class PrivilegedGetMethod extends Object implements PrivilegedExceptionAction
Fields Summary |
---|
private Class | clazz | private String | methodName | private Class[] | methodParameterTypes | private boolean | shouldSetAccessible |
Constructors Summary |
---|
public PrivilegedGetMethod(Class clazz, String methodName, Class[] methodParameterTypes, boolean shouldSetAccessible)
this.clazz = clazz;
this.methodName = methodName;
this.methodParameterTypes = methodParameterTypes;
|
Methods Summary |
---|
public java.lang.Object | run()
return PrivilegedAccessHelper.getMethod(clazz, methodName, methodParameterTypes, shouldSetAccessible);
|
|