summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim van der Riet <kpvdr@apache.org>2006-12-15 19:29:31 +0000
committerKim van der Riet <kpvdr@apache.org>2006-12-15 19:29:31 +0000
commitfaed4832ea9c4bc039103c1bbf95eb38ff4d2171 (patch)
treef9fc1d519c3b7c83cac3d29dd8dbe1eeee94f9f4
parentad19ba2d70eb9f51b574b0d2be374a0559cc4e17 (diff)
downloadqpid-python-faed4832ea9c4bc039103c1bbf95eb38ff4d2171.tar.gz
Replacement for ProtocolVersionListClass in current xslt generator
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@487629 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--gentools/templ.java/ProtocolVersionListClass.tmpl38
1 files changed, 38 insertions, 0 deletions
diff --git a/gentools/templ.java/ProtocolVersionListClass.tmpl b/gentools/templ.java/ProtocolVersionListClass.tmpl
new file mode 100644
index 0000000000..bc98e0c1ea
--- /dev/null
+++ b/gentools/templ.java/ProtocolVersionListClass.tmpl
@@ -0,0 +1,38 @@
+&{ProtocolVersionList.java}
+/*
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+ */
+
+/*
+ * This file is auto-generated by ${GENERATOR} - do not modify.
+ * Supported AMQP versions:
+%{VLIST} * ${major}-${minor}
+ */
+
+package org.apache.qpid.framing;
+
+public interface ProtocolVersionList
+{
+ public final int PROTOCOL_MAJOR = 0;
+ public final int PROTOCOL_MINOR = 1;
+ public final byte pv[][] = {
+%{VLIST} ${protocol-version-list-entry}
+ };
+}