From bbe30c7875f67547ea9394d4e99b420ac22ef152 Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Wed, 16 Apr 2008 13:32:13 +0000 Subject: QPID-901: updates to the java client to use the 0-10 final spec instead of the 0-10 preview spec; this includes improvements to the codegen process as well as some modifications to the shared code path in the client to not lose per message state when consumers are closed. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@648692 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/java/common/Constant.tpl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 qpid/java/common/Constant.tpl (limited to 'qpid/java/common/Constant.tpl') diff --git a/qpid/java/common/Constant.tpl b/qpid/java/common/Constant.tpl new file mode 100644 index 0000000000..695812ea75 --- /dev/null +++ b/qpid/java/common/Constant.tpl @@ -0,0 +1,14 @@ +package org.apache.qpidity.transport; + +${from genutil import *} + +public interface Constant +{ +${ +constants = spec.query["amqp/constant"] + +for c in constants: + name = scream(c["@name"]) + value = c["@value"] + out(" public static final int $name = $value;\n") +}} -- cgit v1.2.1