Some more refactors:

Moving the jms type interfaces to the JMS namespace, hopefully this will be come a standardized set of interfaces
 for dotnet in the furture.



git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@383295 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-03-05 08:28:53 +00:00
parent bb28820a8e
commit 47a327ab83
162 changed files with 6352 additions and 6194 deletions

View File

@ -1,53 +0,0 @@
/*
* 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.
*/
using System;
using System.Collections;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ
{
/// <summary>
/// Exception thrown when the broker returns an error
/// </summary>
public class BrokerException : OpenWireException
{
private BrokerError brokerError;
public BrokerException(BrokerError brokerError) : base(
brokerError.ExceptionClass + " : " + brokerError.Message)
{
this.brokerError = brokerError;
}
public BrokerError BrokerError {
get {
return brokerError;
}
}
public virtual string JavaStackTrace
{
get {
return brokerError.StackTrace;
}
}
}
}

View File

@ -14,14 +14,13 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using System; using ActiveMQ.Commands;
using System.Collections; using JMS;
using ActiveMQ;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
public class ActiveMQBytesMessage : ActiveMQMessage, IBytesMessage public class ActiveMQBytesMessage : ActiveMQMessage, IBytesMessage
{ {
public const byte ID_ActiveMQBytesMessage = 24; public const byte ID_ActiveMQBytesMessage = 24;
@ -32,3 +31,4 @@ namespace ActiveMQ.OpenWire.Commands
} }
} }
} }

View File

@ -14,15 +14,20 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using ActiveMQ;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire;
using JMS;
using System; using System;
namespace ActiveMQ.OpenWire.Commands
{
/// <summary>
/// Summary description for ActiveMQDestination. /// <summary>
/// </summary> /// Summary description for ActiveMQDestination.
public abstract class ActiveMQDestination : AbstractCommand, IDestination /// </summary>
namespace ActiveMQ.Commands
{
public abstract class ActiveMQDestination : AbstractCommand, IDestination
{ {
/** /**
@ -524,3 +529,4 @@ namespace ActiveMQ.OpenWire.Commands
public abstract ActiveMQDestination CreateDestination(String name); public abstract ActiveMQDestination CreateDestination(String name);
} }
} }

View File

@ -14,15 +14,15 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using System; using ActiveMQ.Commands;
using System.Collections;
using ActiveMQ;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using JMS;
using System;
namespace ActiveMQ.OpenWire.Commands
namespace ActiveMQ.Commands
{ {
public class ActiveMQMapMessage : ActiveMQMessage, IMapMessage public class ActiveMQMapMessage : ActiveMQMessage, IMapMessage
{ {
public const byte ID_ActiveMQMapMessage = 25; public const byte ID_ActiveMQMapMessage = 25;
@ -63,3 +63,4 @@ namespace ActiveMQ.OpenWire.Commands
} }
} }

View File

@ -14,14 +14,20 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using System; using ActiveMQ;
using System.Collections; using ActiveMQ.Commands;
using ActiveMQ.OpenWire;
using JMS;
namespace ActiveMQ.OpenWire.Commands
namespace ActiveMQ.Commands
{ {
public delegate void AcknowledgeHandler(ActiveMQMessage message); public delegate void AcknowledgeHandler(ActiveMQMessage message);
}
public class ActiveMQMessage : Message, IMessage, MarshallAware namespace ActiveMQ.Commands
{
public class ActiveMQMessage : Message, IMessage, MarshallAware
{ {
public const byte ID_ActiveMQMessage = 23; public const byte ID_ActiveMQMessage = 23;
@ -47,9 +53,12 @@ namespace ActiveMQ.OpenWire.Commands
public void Acknowledge() public void Acknowledge()
{ {
if (Acknowledger == null){ if (Acknowledger == null)
throw new OpenWireException("No Acknowledger has been associated with this message: " + this);} {
else { throw new OpenWireException("No Acknowledger has been associated with this message: " + this);
}
else
{
Acknowledger(this); Acknowledger(this);
} }
} }
@ -306,3 +315,4 @@ namespace ActiveMQ.OpenWire.Commands
} }
} }

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for ActiveMQObjectMessage // Marshalling code for Open Wire Format for ActiveMQObjectMessage

View File

@ -14,14 +14,17 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using ActiveMQ.Commands;
using JMS;
using System; using System;
namespace ActiveMQ.OpenWire.Commands
/// <summary>
/// Summary description for ActiveMQQueue.
/// </summary>
namespace ActiveMQ.Commands
{ {
/// <summary> public class ActiveMQQueue : ActiveMQDestination, IQueue
/// Summary description for ActiveMQQueue.
/// </summary>
public class ActiveMQQueue : ActiveMQDestination, IQueue
{ {
public const byte ID_ActiveMQQueue = 100; public const byte ID_ActiveMQQueue = 100;
@ -53,3 +56,4 @@ namespace ActiveMQ.OpenWire.Commands
} }
} }
} }

View File

@ -14,14 +14,14 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using System; using ActiveMQ.Commands;
using System.Collections;
namespace ActiveMQ.OpenWire.Commands
namespace ActiveMQ.Commands
{ {
public class ActiveMQStreamMessage : ActiveMQMessage public class ActiveMQStreamMessage : ActiveMQMessage
{ {
public const byte ID_ActiveMQStreamMessage = 27; public const byte ID_ActiveMQStreamMessage = 27;
@ -31,7 +31,8 @@ namespace ActiveMQ.OpenWire.Commands
// TODO generate ToString method // TODO generate ToString method
public override byte GetDataStructureType() { public override byte GetDataStructureType()
{
return ID_ActiveMQStreamMessage; return ID_ActiveMQStreamMessage;
} }
@ -40,3 +41,4 @@ namespace ActiveMQ.OpenWire.Commands
} }
} }

View File

@ -15,20 +15,21 @@
* limitations under the License. * limitations under the License.
*/ */
using ActiveMQ.Commands;
using System; using System;
using System.Collections;
namespace ActiveMQ.OpenWire.Commands
//
// Marshalling code for Open Wire Format for ActiveMQTempDestination
//
//
// 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
//
namespace ActiveMQ.Commands
{ {
// public abstract class ActiveMQTempDestination : ActiveMQDestination
// Marshalling code for Open Wire Format for ActiveMQTempDestination
//
//
// 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
//
public abstract class ActiveMQTempDestination : ActiveMQDestination
{ {
public const byte ID_ActiveMQTempDestination = 0; public const byte ID_ActiveMQTempDestination = 0;
@ -46,3 +47,4 @@ namespace ActiveMQ.OpenWire.Commands
} }
} }
} }

View File

@ -14,14 +14,17 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using ActiveMQ.Commands;
using JMS;
using System; using System;
namespace ActiveMQ.OpenWire.Commands
/// <summary>
/// A Temporary Queue
/// </summary>
namespace ActiveMQ.Commands
{ {
/// <summary> public class ActiveMQTempQueue : ActiveMQTempDestination, ITemporaryQueue
/// A Temporary Queue
/// </summary>
public class ActiveMQTempQueue : ActiveMQTempDestination, ITemporaryQueue
{ {
public const byte ID_ActiveMQTempQueue = 102; public const byte ID_ActiveMQTempQueue = 102;
@ -54,3 +57,4 @@ namespace ActiveMQ.OpenWire.Commands
} }
} }
} }

View File

@ -14,14 +14,17 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using ActiveMQ.Commands;
using JMS;
using System; using System;
namespace ActiveMQ.OpenWire.Commands
/// <summary>
/// A Temporary Topic
/// </summary>
namespace ActiveMQ.Commands
{ {
/// <summary> public class ActiveMQTempTopic : ActiveMQTempDestination, ITemporaryTopic
/// A Temporary Topic
/// </summary>
public class ActiveMQTempTopic : ActiveMQTempDestination, ITemporaryTopic
{ {
public const byte ID_ActiveMQTempTopic = 103; public const byte ID_ActiveMQTempTopic = 103;
@ -54,3 +57,4 @@ namespace ActiveMQ.OpenWire.Commands
} }
} }
} }

View File

@ -14,12 +14,14 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using ActiveMQ.Commands;
using JMS;
using System; using System;
using System.Collections;
namespace ActiveMQ.OpenWire.Commands
namespace ActiveMQ.Commands
{ {
public class ActiveMQTextMessage : ActiveMQMessage, ITextMessage public class ActiveMQTextMessage : ActiveMQMessage, ITextMessage
{ {
public const byte ID_ActiveMQTextMessage = 28; public const byte ID_ActiveMQTextMessage = 28;
@ -89,3 +91,4 @@ namespace ActiveMQ.OpenWire.Commands
} }
} }
} }

View File

@ -14,14 +14,17 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using ActiveMQ.Commands;
using JMS;
using System; using System;
namespace ActiveMQ.OpenWire.Commands
/// <summary>
/// Summary description for ActiveMQTopic.
/// </summary>
namespace ActiveMQ.Commands
{ {
/// <summary> public class ActiveMQTopic : ActiveMQDestination, ITopic
/// Summary description for ActiveMQTopic.
/// </summary>
public class ActiveMQTopic : ActiveMQDestination, ITopic
{ {
public const byte ID_ActiveMQTopic = 101; public const byte ID_ActiveMQTopic = 101;
@ -53,3 +56,4 @@ namespace ActiveMQ.OpenWire.Commands
} }
} }
} }

View File

@ -7,16 +7,15 @@
// activemq-openwire module // activemq-openwire module
// //
using System; using ActiveMQ.Commands;
using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using System;
namespace ActiveMQ.OpenWire.Commands
namespace ActiveMQ.Commands
{ {
public abstract class BaseCommand : AbstractCommand
public abstract class BaseCommand : AbstractCommand
{ {
public override int GetHashCode() public override int GetHashCode()
@ -48,3 +47,4 @@ namespace ActiveMQ.OpenWire.Commands
} }
} }

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for BrokerId // Marshalling code for Open Wire Format for BrokerId

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for BrokerInfo // Marshalling code for Open Wire Format for BrokerInfo

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for ConnectionError // Marshalling code for Open Wire Format for ConnectionError

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for ConnectionId // Marshalling code for Open Wire Format for ConnectionId

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for ConnectionInfo // Marshalling code for Open Wire Format for ConnectionInfo

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for ConsumerId // Marshalling code for Open Wire Format for ConsumerId

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for ConsumerInfo // Marshalling code for Open Wire Format for ConsumerInfo

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for ControlCommand // Marshalling code for Open Wire Format for ControlCommand

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for DataArrayResponse // Marshalling code for Open Wire Format for DataArrayResponse

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for DataResponse // Marshalling code for Open Wire Format for DataResponse

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for DestinationInfo // Marshalling code for Open Wire Format for DestinationInfo

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for DiscoveryEvent // Marshalling code for Open Wire Format for DiscoveryEvent

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for ExceptionResponse // Marshalling code for Open Wire Format for ExceptionResponse

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for FlushCommand // Marshalling code for Open Wire Format for FlushCommand

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for IntegerResponse // Marshalling code for Open Wire Format for IntegerResponse

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for JournalQueueAck // Marshalling code for Open Wire Format for JournalQueueAck

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for JournalTopicAck // Marshalling code for Open Wire Format for JournalTopicAck

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for JournalTrace // Marshalling code for Open Wire Format for JournalTrace

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for JournalTransaction // Marshalling code for Open Wire Format for JournalTransaction

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for KeepAliveInfo // Marshalling code for Open Wire Format for KeepAliveInfo

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for LocalTransactionId // Marshalling code for Open Wire Format for LocalTransactionId

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for Message // Marshalling code for Open Wire Format for Message

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for MessageAck // Marshalling code for Open Wire Format for MessageAck

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for MessageDispatch // Marshalling code for Open Wire Format for MessageDispatch

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for MessageDispatchNotification // Marshalling code for Open Wire Format for MessageDispatchNotification

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for MessageId // Marshalling code for Open Wire Format for MessageId

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for ProducerId // Marshalling code for Open Wire Format for ProducerId

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for ProducerInfo // Marshalling code for Open Wire Format for ProducerInfo

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for RemoveInfo // Marshalling code for Open Wire Format for RemoveInfo

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for RemoveSubscriptionInfo // Marshalling code for Open Wire Format for RemoveSubscriptionInfo

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for Response // Marshalling code for Open Wire Format for Response

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for SessionId // Marshalling code for Open Wire Format for SessionId

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for SessionInfo // Marshalling code for Open Wire Format for SessionInfo

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for ShutdownInfo // Marshalling code for Open Wire Format for ShutdownInfo

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for SubscriptionInfo // Marshalling code for Open Wire Format for SubscriptionInfo

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for TransactionId // Marshalling code for Open Wire Format for TransactionId

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for TransactionInfo // Marshalling code for Open Wire Format for TransactionInfo

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for WireFormatInfo // Marshalling code for Open Wire Format for WireFormatInfo

View File

@ -19,9 +19,9 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using ActiveMQ.Commands;
namespace ActiveMQ.OpenWire.Commands namespace ActiveMQ.Commands
{ {
// //
// Marshalling code for Open Wire Format for XATransactionId // Marshalling code for Open Wire Format for XATransactionId

View File

@ -1,9 +1,9 @@
using ActiveMQ.Commands;
using ActiveMQ.OpenWire;
using ActiveMQ.Transport;
using JMS;
using System; using System;
using System.Collections; using System.Collections;
using System.Threading;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ namespace ActiveMQ
{ {

View File

@ -18,7 +18,6 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ namespace ActiveMQ
{ {

View File

@ -14,11 +14,10 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using ActiveMQ.Commands;
using ActiveMQ.Transport;
using JMS;
using System; using System;
using System.Collections;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ namespace ActiveMQ
{ {

View File

@ -18,7 +18,6 @@ using System;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ namespace ActiveMQ
{ {

View File

@ -14,11 +14,9 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using ActiveMQ.Commands;
using System; using System;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ namespace ActiveMQ
{ {
/// <summary> /// <summary>

View File

@ -14,12 +14,10 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using System; using ActiveMQ.Commands;
using System.Collections;
using System.Threading;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands; using JMS;
using System.Threading;
namespace ActiveMQ namespace ActiveMQ
{ {

View File

@ -14,10 +14,8 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using System; using ActiveMQ.Commands;
using JMS;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ namespace ActiveMQ
{ {

View File

@ -14,9 +14,8 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using ActiveMQ.Commands;
using System; using System;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ.OpenWire namespace ActiveMQ.OpenWire
{ {

View File

@ -14,14 +14,11 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using ActiveMQ.Commands;
using System; using System;
using System.IO;
using System.Net;
using System.Text;
using System.Collections; using System.Collections;
using System.IO;
using ActiveMQ.OpenWire; using System.Text;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ.OpenWire namespace ActiveMQ.OpenWire

View File

@ -18,7 +18,6 @@ using System;
using System.IO; using System.IO;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ.OpenWire namespace ActiveMQ.OpenWire

View File

@ -17,7 +17,6 @@
using System; using System;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ.OpenWire namespace ActiveMQ.OpenWire
{ {

View File

@ -14,12 +14,12 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using System.Collections; using ActiveMQ.Commands;
using JMS;
using System; using System;
using System.Collections;
using System.Threading; using System.Threading;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ.OpenWire namespace ActiveMQ.OpenWire
{ {
/// <summary> /// <summary>

View File

@ -14,11 +14,10 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using ActiveMQ.Commands;
using System; using System;
using System.Threading; using System.Threading;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ.OpenWire namespace ActiveMQ.OpenWire
{ {
/// <summary> /// <summary>

View File

@ -14,11 +14,9 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using System; using ActiveMQ.Commands;
using System.Collections; using System.Collections;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ.OpenWire namespace ActiveMQ.OpenWire
{ {
public delegate object PropertyGetter(ActiveMQMessage message); public delegate object PropertyGetter(ActiveMQMessage message);

View File

@ -14,12 +14,11 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using ActiveMQ.Commands;
using ActiveMQ.OpenWire.V1;
using System; using System;
using System.IO; using System.IO;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire namespace ActiveMQ.OpenWire
{ {
/// <summary> /// <summary>

View File

@ -14,6 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
using JMS;
using System; using System;
using System.Collections; using System.Collections;

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -20,7 +20,6 @@ using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

View File

@ -19,8 +19,8 @@ using System;
using System.Collections; using System.Collections;
using System.IO; using System.IO;
using ActiveMQ.Commands;
using ActiveMQ.OpenWire; using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
using ActiveMQ.OpenWire.V1; using ActiveMQ.OpenWire.V1;
namespace ActiveMQ.OpenWire.V1 namespace ActiveMQ.OpenWire.V1

Some files were not shown because too many files have changed in this diff Show More