private void generateHelp(HttpServletResponse resp) throws IOException {
String allHelp = "";
List<IPlugin> mycommands = PluginLoader.getPluginList(PluginType.Command);
for (IPlugin iPlugin : mycommands) {
ICommandPlugin icp = (ICommandPlugin) iPlugin;
allHelp += "<h4>" + icp.help().getTitle() + "</h4>" + icp.help().getMessage() + "<br/><br/>";
}
generateAnswer(resp, 200, "Goobi Web API Help", allHelp);
}
private void generateAnswer(HttpServletResponse resp, int status, String title, String message) throws IOException {