blob: 695812ea75134fc2de04bce0f2a8ef7aac1701af [file]
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")
}}