public TemplateHelper extract(final HttpServletRequest request, final HttpServletResponse response, final Matcher matcher) {
try {
return new TemplateHelper(response.getWriter(),
new MapBuilder<String, Object>().set( "templateId", plugin ).build());
} catch (final IOException e) {
throw new SironaException(e);
}
}