Class<?> type = ClassUtils.forName(className);
if (type != null) {
Object instance = ClassUtils.newInstance(type);
Method method = ClassUtils.getMethod(type, process, PARAMS);
invoke(method, instance,
new RequestContext(request, response, context));
}
context.setAttribute(VelocityContext.class.getName(), ctx);
}