table.column("Property");
table.column("Value");
Map<String, String> info = getJmsService().info(connectionFactory, username, password);
for (String key : info.keySet()) {
table.addRow().addContent(key, info.get(key));
}
table.print(System.out);
return null;