public class PrintConfiguration {
public static void main(String[] args) throws BlurException, TException, IOException {
String connectionStr = args[0];
Iface client = BlurClient.getClient(new Connection("localhost", 40020,10000));
Map<String, String> map = new TreeMap<String, String>(client.configuration());
for (Entry<String, String> e : map.entrySet()) {
System.out.println(e.getKey() + " " + e.getValue());
}
}