From c3efc550841476a65fef790cd6da75253729adde Mon Sep 17 00:00:00 2001 From: "Hiram R. Chirino" Date: Mon, 1 May 2006 14:04:38 +0000 Subject: [PATCH] Added openwire classes that were generated for the .NET port git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@398596 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/csharp/ActiveMQ/Commands/ConnectionControl.cs | 1 + .../src/main/csharp/ActiveMQ/Commands/ConsumerControl.cs | 1 + .../csharp/ActiveMQ/OpenWire/V1/ConnectionControlMarshaller.cs | 1 + .../csharp/ActiveMQ/OpenWire/V1/ConsumerControlMarshaller.cs | 1 + pom.xml | 3 ++- 5 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 activemq-dotnet/src/main/csharp/ActiveMQ/Commands/ConnectionControl.cs create mode 100644 activemq-dotnet/src/main/csharp/ActiveMQ/Commands/ConsumerControl.cs create mode 100644 activemq-dotnet/src/main/csharp/ActiveMQ/OpenWire/V1/ConnectionControlMarshaller.cs create mode 100644 activemq-dotnet/src/main/csharp/ActiveMQ/OpenWire/V1/ConsumerControlMarshaller.cs diff --git a/activemq-dotnet/src/main/csharp/ActiveMQ/Commands/ConnectionControl.cs b/activemq-dotnet/src/main/csharp/ActiveMQ/Commands/ConnectionControl.cs new file mode 100644 index 0000000000..20a4779e86 --- /dev/null +++ b/activemq-dotnet/src/main/csharp/ActiveMQ/Commands/ConnectionControl.cs @@ -0,0 +1 @@ +/* * Copyright 2006 The Apache Software Foundation or its licensors, as * applicable. * * 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. */ // // NOTE!: This file is autogenerated - do not modify! // if you need to make a change, please see the Groovy scripts in the // activemq-core module // using System; using System.Collections; using ActiveMQ.OpenWire; using ActiveMQ.Commands; namespace ActiveMQ.Commands { /// /// The ActiveMQ ConnectionControl Command /// public class ConnectionControl : BaseCommand { public const byte ID_ConnectionControl = 18; bool close; bool exit; bool faultTolerant; bool resume; bool suspend; public override string ToString() { return GetType().Name + "[" + " Close=" + Close + " Exit=" + Exit + " FaultTolerant=" + FaultTolerant + " Resume=" + Resume + " Suspend=" + Suspend + " ]"; } public override byte GetDataStructureType() { return ID_ConnectionControl; } // Properties public bool Close { get { return close; } set { this.close = value; } } public bool Exit { get { return exit; } set { this.exit = value; } } public bool FaultTolerant { get { return faultTolerant; } set { this.faultTolerant = value; } } public bool Resume { get { return resume; } set { this.resume = value; } } public bool Suspend { get { return suspend; } set { this.suspend = value; } } } } \ No newline at end of file diff --git a/activemq-dotnet/src/main/csharp/ActiveMQ/Commands/ConsumerControl.cs b/activemq-dotnet/src/main/csharp/ActiveMQ/Commands/ConsumerControl.cs new file mode 100644 index 0000000000..71f4d7b82c --- /dev/null +++ b/activemq-dotnet/src/main/csharp/ActiveMQ/Commands/ConsumerControl.cs @@ -0,0 +1 @@ +/* * Copyright 2006 The Apache Software Foundation or its licensors, as * applicable. * * 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. */ // // NOTE!: This file is autogenerated - do not modify! // if you need to make a change, please see the Groovy scripts in the // activemq-core module // using System; using System.Collections; using ActiveMQ.OpenWire; using ActiveMQ.Commands; namespace ActiveMQ.Commands { /// /// The ActiveMQ ConsumerControl Command /// public class ConsumerControl : BaseCommand { public const byte ID_ConsumerControl = 17; bool close; ConsumerId consumerId; int prefetch; public override string ToString() { return GetType().Name + "[" + " Close=" + Close + " ConsumerId=" + ConsumerId + " Prefetch=" + Prefetch + " ]"; } public override byte GetDataStructureType() { return ID_ConsumerControl; } // Properties public bool Close { get { return close; } set { this.close = value; } } public ConsumerId ConsumerId { get { return consumerId; } set { this.consumerId = value; } } public int Prefetch { get { return prefetch; } set { this.prefetch = value; } } } } \ No newline at end of file diff --git a/activemq-dotnet/src/main/csharp/ActiveMQ/OpenWire/V1/ConnectionControlMarshaller.cs b/activemq-dotnet/src/main/csharp/ActiveMQ/OpenWire/V1/ConnectionControlMarshaller.cs new file mode 100644 index 0000000000..564206a3ec --- /dev/null +++ b/activemq-dotnet/src/main/csharp/ActiveMQ/OpenWire/V1/ConnectionControlMarshaller.cs @@ -0,0 +1 @@ +/* * Copyright 2006 The Apache Software Foundation or its licensors, as * applicable. * * 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. */ // // NOTE!: This file is autogenerated - do not modify! // if you need to make a change, please see the Groovy scripts in the // activemq-core module // using System; using System.Collections; using System.IO; using ActiveMQ.Commands; using ActiveMQ.OpenWire; using ActiveMQ.OpenWire.V1; namespace ActiveMQ.OpenWire.V1 { /// /// Marshalling code for Open Wire Format for ConnectionControl /// class ConnectionControlMarshaller : BaseCommandMarshaller { public override DataStructure CreateObject() { return new ConnectionControl(); } 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, info, 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); ConnectionControl info = (ConnectionControl)o; 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); } } } \ No newline at end of file diff --git a/activemq-dotnet/src/main/csharp/ActiveMQ/OpenWire/V1/ConsumerControlMarshaller.cs b/activemq-dotnet/src/main/csharp/ActiveMQ/OpenWire/V1/ConsumerControlMarshaller.cs new file mode 100644 index 0000000000..d77fbc3348 --- /dev/null +++ b/activemq-dotnet/src/main/csharp/ActiveMQ/OpenWire/V1/ConsumerControlMarshaller.cs @@ -0,0 +1 @@ +/* * Copyright 2006 The Apache Software Foundation or its licensors, as * applicable. * * 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. */ // // NOTE!: This file is autogenerated - do not modify! // if you need to make a change, please see the Groovy scripts in the // activemq-core module // using System; using System.Collections; using System.IO; using ActiveMQ.Commands; using ActiveMQ.OpenWire; using ActiveMQ.OpenWire.V1; namespace ActiveMQ.OpenWire.V1 { /// /// Marshalling code for Open Wire Format for ConsumerControl /// class ConsumerControlMarshaller : BaseCommandMarshaller { public override DataStructure CreateObject() { return new ConsumerControl(); } 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(); } // // 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, info, bs); bs.WriteBoolean(info.Close); rc += TightMarshalNestedObject1(wireFormat, (DataStructure)info.ConsumerId, bs); 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); } // // 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(); } // // 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); } } } \ No newline at end of file diff --git a/pom.xml b/pom.xml index f0157d1a86..8ca9488f28 100755 --- a/pom.xml +++ b/pom.xml @@ -321,7 +321,7 @@ xbean-spring 2.2 true - +