return true;
}
private List<String> buildHelpSupportResponse() {
List<String> lines = new LinkedList<String>();
Map<String, String> templates = new SupportMessageTemplatesFactory().getTemplates();
for (Entry<String, String> template : templates.entrySet()) {
lines.add(template.getKey() + " - " + template.getValue());
}
return lines;
}