summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gentools/README16
-rw-r--r--gentools/org/apache/qpid/gentools/AmqpConstant.java17
-rw-r--r--gentools/org/apache/qpid/gentools/AmqpConstantSet.java17
-rw-r--r--gentools/org/apache/qpid/gentools/AmqpDomainVersionMap.java17
-rw-r--r--gentools/org/apache/qpid/gentools/AmqpFlagMap.java17
-rw-r--r--gentools/org/apache/qpid/gentools/AmqpOrdinalFieldMap.java17
-rw-r--r--gentools/org/apache/qpid/gentools/AmqpOrdinalVersionMap.java17
-rw-r--r--gentools/org/apache/qpid/gentools/AmqpOverloadedParameterMap.java17
-rw-r--r--gentools/org/apache/qpid/gentools/AmqpTemplateException.java17
-rw-r--r--gentools/org/apache/qpid/gentools/VersionConsistencyCheck.java17
10 files changed, 169 insertions, 0 deletions
diff --git a/gentools/README b/gentools/README
index 7b4aabcb30..ef69bae0e4 100644
--- a/gentools/README
+++ b/gentools/README
@@ -1,3 +1,19 @@
+================================================================================
+Copyright (c) 2006 The Apache Software Foundation
+
+Licensed 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.
+================================================================================
+
AMQP MULTI_VERSION CODE GENERATOR
This directory contains the first part of the new multi-AMQP-version code
diff --git a/gentools/org/apache/qpid/gentools/AmqpConstant.java b/gentools/org/apache/qpid/gentools/AmqpConstant.java
index 310d8c7ae2..5457f93b5a 100644
--- a/gentools/org/apache/qpid/gentools/AmqpConstant.java
+++ b/gentools/org/apache/qpid/gentools/AmqpConstant.java
@@ -1,3 +1,20 @@
+/*
+ *
+ * Copyright (c) 2006 The Apache Software Foundation
+ *
+ * Licensed 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.
+ *
+ */
package org.apache.qpid.gentools;
import java.io.PrintStream;
diff --git a/gentools/org/apache/qpid/gentools/AmqpConstantSet.java b/gentools/org/apache/qpid/gentools/AmqpConstantSet.java
index bca717bdcc..f5c2371b5f 100644
--- a/gentools/org/apache/qpid/gentools/AmqpConstantSet.java
+++ b/gentools/org/apache/qpid/gentools/AmqpConstantSet.java
@@ -1,3 +1,20 @@
+/*
+ *
+ * Copyright (c) 2006 The Apache Software Foundation
+ *
+ * Licensed 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.
+ *
+ */
package org.apache.qpid.gentools;
import java.io.PrintStream;
diff --git a/gentools/org/apache/qpid/gentools/AmqpDomainVersionMap.java b/gentools/org/apache/qpid/gentools/AmqpDomainVersionMap.java
index a243d873f0..77246edc57 100644
--- a/gentools/org/apache/qpid/gentools/AmqpDomainVersionMap.java
+++ b/gentools/org/apache/qpid/gentools/AmqpDomainVersionMap.java
@@ -1,3 +1,20 @@
+/*
+ *
+ * Copyright (c) 2006 The Apache Software Foundation
+ *
+ * Licensed 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.
+ *
+ */
package org.apache.qpid.gentools;
import java.util.TreeMap;
diff --git a/gentools/org/apache/qpid/gentools/AmqpFlagMap.java b/gentools/org/apache/qpid/gentools/AmqpFlagMap.java
index db230fff4e..03c93b8d76 100644
--- a/gentools/org/apache/qpid/gentools/AmqpFlagMap.java
+++ b/gentools/org/apache/qpid/gentools/AmqpFlagMap.java
@@ -1,3 +1,20 @@
+/*
+ *
+ * Copyright (c) 2006 The Apache Software Foundation
+ *
+ * Licensed 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.
+ *
+ */
package org.apache.qpid.gentools;
import java.util.TreeMap;
diff --git a/gentools/org/apache/qpid/gentools/AmqpOrdinalFieldMap.java b/gentools/org/apache/qpid/gentools/AmqpOrdinalFieldMap.java
index f8251492b2..13479e6257 100644
--- a/gentools/org/apache/qpid/gentools/AmqpOrdinalFieldMap.java
+++ b/gentools/org/apache/qpid/gentools/AmqpOrdinalFieldMap.java
@@ -1,3 +1,20 @@
+/*
+ *
+ * Copyright (c) 2006 The Apache Software Foundation
+ *
+ * Licensed 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.
+ *
+ */
package org.apache.qpid.gentools;
import java.util.Iterator;
diff --git a/gentools/org/apache/qpid/gentools/AmqpOrdinalVersionMap.java b/gentools/org/apache/qpid/gentools/AmqpOrdinalVersionMap.java
index a2eb64c65d..76576047c5 100644
--- a/gentools/org/apache/qpid/gentools/AmqpOrdinalVersionMap.java
+++ b/gentools/org/apache/qpid/gentools/AmqpOrdinalVersionMap.java
@@ -1,3 +1,20 @@
+/*
+ *
+ * Copyright (c) 2006 The Apache Software Foundation
+ *
+ * Licensed 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.
+ *
+ */
package org.apache.qpid.gentools;
import java.util.TreeMap;
diff --git a/gentools/org/apache/qpid/gentools/AmqpOverloadedParameterMap.java b/gentools/org/apache/qpid/gentools/AmqpOverloadedParameterMap.java
index 631118301b..112786bdf6 100644
--- a/gentools/org/apache/qpid/gentools/AmqpOverloadedParameterMap.java
+++ b/gentools/org/apache/qpid/gentools/AmqpOverloadedParameterMap.java
@@ -1,3 +1,20 @@
+/*
+ *
+ * Copyright (c) 2006 The Apache Software Foundation
+ *
+ * Licensed 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.
+ *
+ */
package org.apache.qpid.gentools;
import java.util.TreeMap;
diff --git a/gentools/org/apache/qpid/gentools/AmqpTemplateException.java b/gentools/org/apache/qpid/gentools/AmqpTemplateException.java
index c0a3edb207..d0ab916028 100644
--- a/gentools/org/apache/qpid/gentools/AmqpTemplateException.java
+++ b/gentools/org/apache/qpid/gentools/AmqpTemplateException.java
@@ -1,3 +1,20 @@
+/*
+ *
+ * Copyright (c) 2006 The Apache Software Foundation
+ *
+ * Licensed 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.
+ *
+ */
package org.apache.qpid.gentools;
@SuppressWarnings("serial")
diff --git a/gentools/org/apache/qpid/gentools/VersionConsistencyCheck.java b/gentools/org/apache/qpid/gentools/VersionConsistencyCheck.java
index 0943fbde48..d34f66415d 100644
--- a/gentools/org/apache/qpid/gentools/VersionConsistencyCheck.java
+++ b/gentools/org/apache/qpid/gentools/VersionConsistencyCheck.java
@@ -1,3 +1,20 @@
+/*
+ *
+ * Copyright (c) 2006 The Apache Software Foundation
+ *
+ * Licensed 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.
+ *
+ */
package org.apache.qpid.gentools;
public interface VersionConsistencyCheck