1 21 package oracle.toplink.essentials.internal.security; 23 24 import java.lang.reflect.Method ; 25 import java.security.PrivilegedExceptionAction ; 26 27 public class PrivilegedGetMethodParameterTypes implements PrivilegedExceptionAction { 28 29 private Method method; 30 31 public PrivilegedGetMethodParameterTypes(Method method) { 32 this.method = method; 33 } 34 35 public Object run() { 36 return PrivilegedAccessHelper.getMethodParameterTypes(method); 37 } 38 39 } 40 41 42 | Popular Tags |