[prev in list] [next in list] [prev in thread] [next in thread] 

List:       activemq-commits
Subject:    svn commit: r799407 [25/29] - in
From:       tabish () apache ! org
Date:       2009-07-30 19:06:44
Message-ID: 20090730190700.1403323889FA () eris ! apache ! org
[Download RAW message or body]

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQQueueMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQQueueMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQQueueMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQQueueMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,103 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for ActiveMQQueue
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for ActiveMQQueue
+    /// </summary>
+    class ActiveMQQueueMarshaller : ActiveMQDestinationMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new ActiveMQQueue();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return ActiveMQQueue.ID_ACTIVEMQQUEUE;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQStreamMessageMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/s \
rc/main/csharp/OpenWire/V5/ActiveMQStreamMessageMarshaller.cs?rev=799407&view=auto \
                ==============================================================================
                
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQStreamMessageMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQStreamMessageMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,103 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for ActiveMQStreamMessage
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for ActiveMQStreamMessage
+    /// </summary>
+    class ActiveMQStreamMessageMarshaller : ActiveMQMessageMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new ActiveMQStreamMessage();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return ActiveMQStreamMessage.ID_ACTIVEMQSTREAMMESSAGE;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTempDestinationMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/s \
rc/main/csharp/OpenWire/V5/ActiveMQTempDestinationMarshaller.cs?rev=799407&view=auto \
                ==============================================================================
                
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTempDestinationMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTempDestinationMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,88 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for ActiveMQTempDestination
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for ActiveMQTempDestination
+    /// </summary>
+    abstract class ActiveMQTempDestinationMarshaller : ActiveMQDestinationMarshaller
+    {
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTempQueueMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTempQueueMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTempQueueMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTempQueueMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,103 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for ActiveMQTempQueue
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for ActiveMQTempQueue
+    /// </summary>
+    class ActiveMQTempQueueMarshaller : ActiveMQTempDestinationMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new ActiveMQTempQueue();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return ActiveMQTempQueue.ID_ACTIVEMQTEMPQUEUE;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTempTopicMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTempTopicMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTempTopicMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTempTopicMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,103 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for ActiveMQTempTopic
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for ActiveMQTempTopic
+    /// </summary>
+    class ActiveMQTempTopicMarshaller : ActiveMQTempDestinationMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new ActiveMQTempTopic();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return ActiveMQTempTopic.ID_ACTIVEMQTEMPTOPIC;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTextMessageMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTextMessageMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTextMessageMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTextMessageMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,103 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for ActiveMQTextMessage
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for ActiveMQTextMessage
+    /// </summary>
+    class ActiveMQTextMessageMarshaller : ActiveMQMessageMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new ActiveMQTextMessage();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return ActiveMQTextMessage.ID_ACTIVEMQTEXTMESSAGE;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTopicMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTopicMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTopicMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ActiveMQTopicMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,103 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for ActiveMQTopic
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for ActiveMQTopic
+    /// </summary>
+    class ActiveMQTopicMarshaller : ActiveMQDestinationMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new ActiveMQTopic();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return ActiveMQTopic.ID_ACTIVEMQTOPIC;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/BaseCommandMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/BaseCommandMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/BaseCommandMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/BaseCommandMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,106 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for BaseCommand
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for BaseCommand
+    /// </summary>
+    abstract class BaseCommandMarshaller : BaseDataStreamMarshaller
+    {
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+
+            BaseCommand info = (BaseCommand)o;
+            info.CommandId = dataIn.ReadInt32();
+            info.ResponseRequired = bs.ReadBoolean();
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+            BaseCommand info = (BaseCommand)o;
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+            bs.WriteBoolean(info.ResponseRequired);
+
+            return rc + 4;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+
+            BaseCommand info = (BaseCommand)o;
+            dataOut.Write(info.CommandId);
+            bs.ReadBoolean();
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+
+            BaseCommand info = (BaseCommand)o;
+            info.CommandId = dataIn.ReadInt32();
+            info.ResponseRequired = dataIn.ReadBoolean();
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            BaseCommand info = (BaseCommand)o;
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+            dataOut.Write(info.CommandId);
+            dataOut.Write(info.ResponseRequired);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/BrokerIdMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/BrokerIdMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/BrokerIdMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/BrokerIdMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,117 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for BrokerId
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for BrokerId
+    /// </summary>
+    class BrokerIdMarshaller : BaseDataStreamMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new BrokerId();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return BrokerId.ID_BROKERID;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+
+            BrokerId info = (BrokerId)o;
+            info.Value = TightUnmarshalString(dataIn, bs);
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+            BrokerId info = (BrokerId)o;
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+            rc += TightMarshalString1(info.Value, bs);
+
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+
+            BrokerId info = (BrokerId)o;
+            TightMarshalString2(info.Value, dataOut, bs);
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+
+            BrokerId info = (BrokerId)o;
+            info.Value = LooseUnmarshalString(dataIn);
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            BrokerId info = (BrokerId)o;
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+            LooseMarshalString(info.Value, dataOut);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/BrokerInfoMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/BrokerInfoMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/BrokerInfoMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/BrokerInfoMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,194 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for BrokerInfo
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for BrokerInfo
+    /// </summary>
+    class BrokerInfoMarshaller : BaseCommandMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new BrokerInfo();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return BrokerInfo.ID_BROKERINFO;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+
+            BrokerInfo info = (BrokerInfo)o;
+            info.BrokerId = (BrokerId) TightUnmarshalCachedObject(wireFormat, \
dataIn, bs); +            info.BrokerURL = TightUnmarshalString(dataIn, bs);
+
+            if (bs.ReadBoolean()) {
+                short size = dataIn.ReadInt16();
+                BrokerInfo[] value = new BrokerInfo[size];
+                for( int i=0; i < size; i++ ) {
+                    value[i] = (BrokerInfo) \
TightUnmarshalNestedObject(wireFormat,dataIn, bs); +                }
+                info.PeerBrokerInfos = value;
+            }
+            else {
+                info.PeerBrokerInfos = null;
+            }
+            info.BrokerName = TightUnmarshalString(dataIn, bs);
+            info.SlaveBroker = bs.ReadBoolean();
+            info.MasterBroker = bs.ReadBoolean();
+            info.FaultTolerantConfiguration = bs.ReadBoolean();
+            info.DuplexConnection = bs.ReadBoolean();
+            info.NetworkConnection = bs.ReadBoolean();
+            info.ConnectionId = TightUnmarshalLong(wireFormat, dataIn, bs);
+            info.BrokerUploadUrl = TightUnmarshalString(dataIn, bs);
+            info.NetworkProperties = TightUnmarshalString(dataIn, bs);
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+            BrokerInfo info = (BrokerInfo)o;
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+            rc += TightMarshalCachedObject1(wireFormat, \
(DataStructure)info.BrokerId, bs); +            rc += \
TightMarshalString1(info.BrokerURL, bs); +            rc += \
TightMarshalObjectArray1(wireFormat, info.PeerBrokerInfos, bs); +            rc += \
TightMarshalString1(info.BrokerName, bs); +            \
bs.WriteBoolean(info.SlaveBroker); +            bs.WriteBoolean(info.MasterBroker);
+            bs.WriteBoolean(info.FaultTolerantConfiguration);
+            bs.WriteBoolean(info.DuplexConnection);
+            bs.WriteBoolean(info.NetworkConnection);
+            rc += TightMarshalLong1(wireFormat, info.ConnectionId, bs);
+            rc += TightMarshalString1(info.BrokerUploadUrl, bs);
+            rc += TightMarshalString1(info.NetworkProperties, bs);
+
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+
+            BrokerInfo info = (BrokerInfo)o;
+            TightMarshalCachedObject2(wireFormat, (DataStructure)info.BrokerId, \
dataOut, bs); +            TightMarshalString2(info.BrokerURL, dataOut, bs);
+            TightMarshalObjectArray2(wireFormat, info.PeerBrokerInfos, dataOut, bs);
+            TightMarshalString2(info.BrokerName, dataOut, bs);
+            bs.ReadBoolean();
+            bs.ReadBoolean();
+            bs.ReadBoolean();
+            bs.ReadBoolean();
+            bs.ReadBoolean();
+            TightMarshalLong2(wireFormat, info.ConnectionId, dataOut, bs);
+            TightMarshalString2(info.BrokerUploadUrl, dataOut, bs);
+            TightMarshalString2(info.NetworkProperties, dataOut, bs);
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+
+            BrokerInfo info = (BrokerInfo)o;
+            info.BrokerId = (BrokerId) LooseUnmarshalCachedObject(wireFormat, \
dataIn); +            info.BrokerURL = LooseUnmarshalString(dataIn);
+
+            if (dataIn.ReadBoolean()) {
+                short size = dataIn.ReadInt16();
+                BrokerInfo[] value = new BrokerInfo[size];
+                for( int i=0; i < size; i++ ) {
+                    value[i] = (BrokerInfo) \
LooseUnmarshalNestedObject(wireFormat,dataIn); +                }
+                info.PeerBrokerInfos = value;
+            }
+            else {
+                info.PeerBrokerInfos = null;
+            }
+            info.BrokerName = LooseUnmarshalString(dataIn);
+            info.SlaveBroker = dataIn.ReadBoolean();
+            info.MasterBroker = dataIn.ReadBoolean();
+            info.FaultTolerantConfiguration = dataIn.ReadBoolean();
+            info.DuplexConnection = dataIn.ReadBoolean();
+            info.NetworkConnection = dataIn.ReadBoolean();
+            info.ConnectionId = LooseUnmarshalLong(wireFormat, dataIn);
+            info.BrokerUploadUrl = LooseUnmarshalString(dataIn);
+            info.NetworkProperties = LooseUnmarshalString(dataIn);
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            BrokerInfo info = (BrokerInfo)o;
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+            LooseMarshalCachedObject(wireFormat, (DataStructure)info.BrokerId, \
dataOut); +            LooseMarshalString(info.BrokerURL, dataOut);
+            LooseMarshalObjectArray(wireFormat, info.PeerBrokerInfos, dataOut);
+            LooseMarshalString(info.BrokerName, dataOut);
+            dataOut.Write(info.SlaveBroker);
+            dataOut.Write(info.MasterBroker);
+            dataOut.Write(info.FaultTolerantConfiguration);
+            dataOut.Write(info.DuplexConnection);
+            dataOut.Write(info.NetworkConnection);
+            LooseMarshalLong(wireFormat, info.ConnectionId, dataOut);
+            LooseMarshalString(info.BrokerUploadUrl, dataOut);
+            LooseMarshalString(info.NetworkProperties, dataOut);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionControlMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionControlMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionControlMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionControlMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,135 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for ConnectionControl
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for ConnectionControl
+    /// </summary>
+    class ConnectionControlMarshaller : BaseCommandMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new ConnectionControl();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return ConnectionControl.ID_CONNECTIONCONTROL;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+
+            ConnectionControl info = (ConnectionControl)o;
+            info.Close = bs.ReadBoolean();
+            info.Exit = bs.ReadBoolean();
+            info.FaultTolerant = bs.ReadBoolean();
+            info.Resume = bs.ReadBoolean();
+            info.Suspend = bs.ReadBoolean();
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+            ConnectionControl info = (ConnectionControl)o;
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+            bs.WriteBoolean(info.Close);
+            bs.WriteBoolean(info.Exit);
+            bs.WriteBoolean(info.FaultTolerant);
+            bs.WriteBoolean(info.Resume);
+            bs.WriteBoolean(info.Suspend);
+
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+            bs.ReadBoolean();
+            bs.ReadBoolean();
+            bs.ReadBoolean();
+            bs.ReadBoolean();
+            bs.ReadBoolean();
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+
+            ConnectionControl info = (ConnectionControl)o;
+            info.Close = dataIn.ReadBoolean();
+            info.Exit = dataIn.ReadBoolean();
+            info.FaultTolerant = dataIn.ReadBoolean();
+            info.Resume = dataIn.ReadBoolean();
+            info.Suspend = dataIn.ReadBoolean();
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            ConnectionControl info = (ConnectionControl)o;
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+            dataOut.Write(info.Close);
+            dataOut.Write(info.Exit);
+            dataOut.Write(info.FaultTolerant);
+            dataOut.Write(info.Resume);
+            dataOut.Write(info.Suspend);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionErrorMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionErrorMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionErrorMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionErrorMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,122 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for ConnectionError
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for ConnectionError
+    /// </summary>
+    class ConnectionErrorMarshaller : BaseCommandMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new ConnectionError();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return ConnectionError.ID_CONNECTIONERROR;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+
+            ConnectionError info = (ConnectionError)o;
+            info.Exception = TightUnmarshalBrokerError(wireFormat, dataIn, bs);
+            info.ConnectionId = (ConnectionId) \
TightUnmarshalNestedObject(wireFormat, dataIn, bs); +        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+            ConnectionError info = (ConnectionError)o;
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+            rc += TightMarshalBrokerError1(wireFormat, info.Exception, bs);
+        rc += TightMarshalNestedObject1(wireFormat, \
(DataStructure)info.ConnectionId, bs); +
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+
+            ConnectionError info = (ConnectionError)o;
+            TightMarshalBrokerError2(wireFormat, info.Exception, dataOut, bs);
+            TightMarshalNestedObject2(wireFormat, (DataStructure)info.ConnectionId, \
dataOut, bs); +        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+
+            ConnectionError info = (ConnectionError)o;
+            info.Exception = LooseUnmarshalBrokerError(wireFormat, dataIn);
+            info.ConnectionId = (ConnectionId) \
LooseUnmarshalNestedObject(wireFormat, dataIn); +        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            ConnectionError info = (ConnectionError)o;
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+            LooseMarshalBrokerError(wireFormat, info.Exception, dataOut);
+            LooseMarshalNestedObject(wireFormat, (DataStructure)info.ConnectionId, \
dataOut); +        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionIdMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionIdMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionIdMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionIdMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,117 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for ConnectionId
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for ConnectionId
+    /// </summary>
+    class ConnectionIdMarshaller : BaseDataStreamMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new ConnectionId();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return ConnectionId.ID_CONNECTIONID;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+
+            ConnectionId info = (ConnectionId)o;
+            info.Value = TightUnmarshalString(dataIn, bs);
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+            ConnectionId info = (ConnectionId)o;
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+            rc += TightMarshalString1(info.Value, bs);
+
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+
+            ConnectionId info = (ConnectionId)o;
+            TightMarshalString2(info.Value, dataOut, bs);
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+
+            ConnectionId info = (ConnectionId)o;
+            info.Value = LooseUnmarshalString(dataIn);
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            ConnectionId info = (ConnectionId)o;
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+            LooseMarshalString(info.Value, dataOut);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionInfoMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionInfoMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionInfoMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConnectionInfoMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,174 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for ConnectionInfo
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for ConnectionInfo
+    /// </summary>
+    class ConnectionInfoMarshaller : BaseCommandMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new ConnectionInfo();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return ConnectionInfo.ID_CONNECTIONINFO;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+
+            ConnectionInfo info = (ConnectionInfo)o;
+            info.ConnectionId = (ConnectionId) \
TightUnmarshalCachedObject(wireFormat, dataIn, bs); +            info.ClientId = \
TightUnmarshalString(dataIn, bs); +            info.Password = \
TightUnmarshalString(dataIn, bs); +            info.UserName = \
TightUnmarshalString(dataIn, bs); +
+            if (bs.ReadBoolean()) {
+                short size = dataIn.ReadInt16();
+                BrokerId[] value = new BrokerId[size];
+                for( int i=0; i < size; i++ ) {
+                    value[i] = (BrokerId) \
TightUnmarshalNestedObject(wireFormat,dataIn, bs); +                }
+                info.BrokerPath = value;
+            }
+            else {
+                info.BrokerPath = null;
+            }
+            info.BrokerMasterConnector = bs.ReadBoolean();
+            info.Manageable = bs.ReadBoolean();
+            info.ClientMaster = bs.ReadBoolean();
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+            ConnectionInfo info = (ConnectionInfo)o;
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+            rc += TightMarshalCachedObject1(wireFormat, \
(DataStructure)info.ConnectionId, bs); +            rc += \
TightMarshalString1(info.ClientId, bs); +            rc += \
TightMarshalString1(info.Password, bs); +            rc += \
TightMarshalString1(info.UserName, bs); +            rc += \
TightMarshalObjectArray1(wireFormat, info.BrokerPath, bs); +            \
bs.WriteBoolean(info.BrokerMasterConnector); +            \
bs.WriteBoolean(info.Manageable); +            bs.WriteBoolean(info.ClientMaster);
+
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+
+            ConnectionInfo info = (ConnectionInfo)o;
+            TightMarshalCachedObject2(wireFormat, (DataStructure)info.ConnectionId, \
dataOut, bs); +            TightMarshalString2(info.ClientId, dataOut, bs);
+            TightMarshalString2(info.Password, dataOut, bs);
+            TightMarshalString2(info.UserName, dataOut, bs);
+            TightMarshalObjectArray2(wireFormat, info.BrokerPath, dataOut, bs);
+            bs.ReadBoolean();
+            bs.ReadBoolean();
+            bs.ReadBoolean();
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+
+            ConnectionInfo info = (ConnectionInfo)o;
+            info.ConnectionId = (ConnectionId) \
LooseUnmarshalCachedObject(wireFormat, dataIn); +            info.ClientId = \
LooseUnmarshalString(dataIn); +            info.Password = \
LooseUnmarshalString(dataIn); +            info.UserName = \
LooseUnmarshalString(dataIn); +
+            if (dataIn.ReadBoolean()) {
+                short size = dataIn.ReadInt16();
+                BrokerId[] value = new BrokerId[size];
+                for( int i=0; i < size; i++ ) {
+                    value[i] = (BrokerId) \
LooseUnmarshalNestedObject(wireFormat,dataIn); +                }
+                info.BrokerPath = value;
+            }
+            else {
+                info.BrokerPath = null;
+            }
+            info.BrokerMasterConnector = dataIn.ReadBoolean();
+            info.Manageable = dataIn.ReadBoolean();
+            info.ClientMaster = dataIn.ReadBoolean();
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            ConnectionInfo info = (ConnectionInfo)o;
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+            LooseMarshalCachedObject(wireFormat, (DataStructure)info.ConnectionId, \
dataOut); +            LooseMarshalString(info.ClientId, dataOut);
+            LooseMarshalString(info.Password, dataOut);
+            LooseMarshalString(info.UserName, dataOut);
+            LooseMarshalObjectArray(wireFormat, info.BrokerPath, dataOut);
+            dataOut.Write(info.BrokerMasterConnector);
+            dataOut.Write(info.Manageable);
+            dataOut.Write(info.ClientMaster);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConsumerControlMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConsumerControlMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConsumerControlMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConsumerControlMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,141 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for ConsumerControl
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for ConsumerControl
+    /// </summary>
+    class ConsumerControlMarshaller : BaseCommandMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new ConsumerControl();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return ConsumerControl.ID_CONSUMERCONTROL;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+
+            ConsumerControl info = (ConsumerControl)o;
+            info.Close = bs.ReadBoolean();
+            info.ConsumerId = (ConsumerId) TightUnmarshalNestedObject(wireFormat, \
dataIn, bs); +            info.Prefetch = dataIn.ReadInt32();
+            info.Flush = bs.ReadBoolean();
+            info.Start = bs.ReadBoolean();
+            info.Stop = bs.ReadBoolean();
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+            ConsumerControl info = (ConsumerControl)o;
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+            bs.WriteBoolean(info.Close);
+        rc += TightMarshalNestedObject1(wireFormat, (DataStructure)info.ConsumerId, \
bs); +            bs.WriteBoolean(info.Flush);
+            bs.WriteBoolean(info.Start);
+            bs.WriteBoolean(info.Stop);
+
+            return rc + 4;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+
+            ConsumerControl info = (ConsumerControl)o;
+            bs.ReadBoolean();
+            TightMarshalNestedObject2(wireFormat, (DataStructure)info.ConsumerId, \
dataOut, bs); +            dataOut.Write(info.Prefetch);
+            bs.ReadBoolean();
+            bs.ReadBoolean();
+            bs.ReadBoolean();
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+
+            ConsumerControl info = (ConsumerControl)o;
+            info.Close = dataIn.ReadBoolean();
+            info.ConsumerId = (ConsumerId) LooseUnmarshalNestedObject(wireFormat, \
dataIn); +            info.Prefetch = dataIn.ReadInt32();
+            info.Flush = dataIn.ReadBoolean();
+            info.Start = dataIn.ReadBoolean();
+            info.Stop = dataIn.ReadBoolean();
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            ConsumerControl info = (ConsumerControl)o;
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+            dataOut.Write(info.Close);
+            LooseMarshalNestedObject(wireFormat, (DataStructure)info.ConsumerId, \
dataOut); +            dataOut.Write(info.Prefetch);
+            dataOut.Write(info.Flush);
+            dataOut.Write(info.Start);
+            dataOut.Write(info.Stop);
+        }
+    }
+}

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConsumerIdMarshaller.cs
                
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConsumerIdMarshaller.cs?rev=799407&view=auto
 ==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConsumerIdMarshaller.cs \
                (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/V5/ConsumerIdMarshaller.cs \
Thu Jul 30 19:06:34 2009 @@ -0,0 +1,127 @@
+/*
+ * 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.
+ */
+
+/*
+ *
+ *  Marshaler code for OpenWire format for ConsumerId
+ *
+ *  NOTE!: This file is auto generated - do not modify!
+ *         if you need to make a change, please see the Java Classes
+ *         in the nms-activemq-openwire-generator module
+ *
+ */
+
+using System;
+using System.Collections;
+using System.IO;
+
+using Apache.NMS.ActiveMQ.Commands;
+using Apache.NMS.ActiveMQ.OpenWire;
+using Apache.NMS.ActiveMQ.OpenWire.V5;
+
+namespace Apache.NMS.ActiveMQ.OpenWire.V5
+{
+    /// <summary>
+    ///  Marshalling code for Open Wire Format for ConsumerId
+    /// </summary>
+    class ConsumerIdMarshaller : BaseDataStreamMarshaller
+    {
+        /// <summery>
+        ///  Creates an instance of the Object that this marshaller handles.
+        /// </summery>
+        public override DataStructure CreateObject() 
+        {
+            return new ConsumerId();
+        }
+
+        /// <summery>
+        ///  Returns the type code for the Object that this Marshaller handles..
+        /// </summery>
+        public override byte GetDataStructureType() 
+        {
+            return ConsumerId.ID_CONSUMERID;
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void TightUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn, BooleanStream bs)  +        {
+            base.TightUnmarshal(wireFormat, o, dataIn, bs);
+
+            ConsumerId info = (ConsumerId)o;
+            info.ConnectionId = TightUnmarshalString(dataIn, bs);
+            info.SessionId = TightUnmarshalLong(wireFormat, dataIn, bs);
+            info.Value = TightUnmarshalLong(wireFormat, dataIn, bs);
+        }
+
+        //
+        // Write the booleans that this object uses to a BooleanStream
+        //
+        public override int TightMarshal1(OpenWireFormat wireFormat, Object o, \
BooleanStream bs) +        {
+            ConsumerId info = (ConsumerId)o;
+
+            int rc = base.TightMarshal1(wireFormat, o, bs);
+            rc += TightMarshalString1(info.ConnectionId, bs);
+            rc += TightMarshalLong1(wireFormat, info.SessionId, bs);
+            rc += TightMarshalLong1(wireFormat, info.Value, bs);
+
+            return rc + 0;
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut, BooleanStream bs) +        {
+            base.TightMarshal2(wireFormat, o, dataOut, bs);
+
+            ConsumerId info = (ConsumerId)o;
+            TightMarshalString2(info.ConnectionId, dataOut, bs);
+            TightMarshalLong2(wireFormat, info.SessionId, dataOut, bs);
+            TightMarshalLong2(wireFormat, info.Value, dataOut, bs);
+        }
+
+        // 
+        // Un-marshal an object instance from the data input stream
+        // 
+        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, \
BinaryReader dataIn)  +        {
+            base.LooseUnmarshal(wireFormat, o, dataIn);
+
+            ConsumerId info = (ConsumerId)o;
+            info.ConnectionId = LooseUnmarshalString(dataIn);
+            info.SessionId = LooseUnmarshalLong(wireFormat, dataIn);
+            info.Value = LooseUnmarshalLong(wireFormat, dataIn);
+        }
+
+        // 
+        // Write a object instance to data output stream
+        //
+        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, \
BinaryWriter dataOut) +        {
+
+            ConsumerId info = (ConsumerId)o;
+
+            base.LooseMarshal(wireFormat, o, dataOut);
+            LooseMarshalString(info.ConnectionId, dataOut);
+            LooseMarshalLong(wireFormat, info.SessionId, dataOut);
+            LooseMarshalLong(wireFormat, info.Value, dataOut);
+        }
+    }
+}


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic