return response;
}
public AjaxResponse includeVelocity(AjaxActionEvent event) {
// Create the component for including velocity content:
TemplateComponent velocity = new TemplateComponent(this.velocityViewResolver, "include");
Map model = new HashMap();
model.put("velocity", "Velocity");
velocity.setTemplateModel(model);
// Create an ajax action for appending it:
AppendContentAction action = new AppendContentAction("velocity", velocity);
// Create a concrete ajax response:
AjaxResponse response = new AjaxResponseImpl();