{
DiameterMessage message = new DiameterRequest(new Node(), Accounting.ACR, Accounting.ACCOUNTING_ORDINAL, "foo");
message.getAVPs().add(Zh.ZH_APPLICATION_ID.getAVP());
PrettyPrinter pp = new PrettyPrinter();
message.accept(pp);
System.out.println(pp);
}
}