* @param methodName The name of the method that is being invoked
* @return A <code>RequestCtx</code> that represents the access in question.
*/
public RequestCtx createReflectionRequest(XQueryContext context, Module contextModule, String className, String methodName)
{
final Account user = context.getUser();
final Set<Subject> subjects = createQuerySubjects(user, contextModule);
final Set<Attribute> resourceAttributes = createReflectionResource(className, methodName);
final Set<Attribute> actionAttributes = createBasicAction(XACMLConstants.INVOKE_METHOD_ACTION);
final Set<Attribute> environmentAttributes = createEnvironment(context.getAccessContext());