Get it to compile after refactor

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@383069 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-03-04 08:18:17 +00:00
parent aae59ee589
commit eb6e421ff6
52 changed files with 277 additions and 298 deletions

View File

@ -17,10 +17,9 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
public class ActiveMQBytesMessage : ActiveMQMessage, IBytesMessage
{

View File

@ -15,10 +15,8 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
/// <summary>
@ -427,7 +425,7 @@ namespace OpenWire.Client.Commands
return physicalName.IndexOf(COMPOSITE_SEPARATOR) > 0;
}
/**
/*
* Returns a list of child destinations if this destination represents a composite
* destination.
*
@ -470,7 +468,6 @@ namespace OpenWire.Client.Commands
/**
* @return hashCode for this instance
*/
public override int GetHashCode()
{
int answer = 37;
@ -492,7 +489,6 @@ namespace OpenWire.Client.Commands
* @param obj the object to compare
* @return true if this instance and obj are equivalent
*/
public override bool Equals(Object obj)
{
bool result = this == obj;

View File

@ -17,10 +17,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ;
using ActiveMQ.OpenWire;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
public class ActiveMQMapMessage : ActiveMQMessage, IMapMessage
{

View File

@ -17,10 +17,7 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
public delegate void AcknowledgeHandler(ActiveMQMessage message);

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for ActiveMQObjectMessage

View File

@ -15,11 +15,8 @@
* limitations under the License.
*/
using System;
using OpenWire.Client;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
/// <summary>
/// Summary description for ActiveMQQueue.

View File

@ -17,10 +17,7 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
public class ActiveMQStreamMessage : ActiveMQMessage
{

View File

@ -1,51 +1,48 @@
/*
* 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 OpenWire.Client;
using OpenWire.Client.Core;
namespace OpenWire.Client.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
//
public abstract class ActiveMQTempDestination : ActiveMQDestination
{
public const byte ID_ActiveMQTempDestination = 0;
public ActiveMQTempDestination() : base()
{
}
public ActiveMQTempDestination(String name) : base(name)
{
}
public override byte GetDataStructureType()
{
return ID_ActiveMQTempDestination;
}
}
}
/*
* 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;
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
//
public abstract class ActiveMQTempDestination : ActiveMQDestination
{
public const byte ID_ActiveMQTempDestination = 0;
public ActiveMQTempDestination() : base()
{
}
public ActiveMQTempDestination(String name) : base(name)
{
}
public override byte GetDataStructureType()
{
return ID_ActiveMQTempDestination;
}
}
}

View File

@ -15,11 +15,8 @@
* limitations under the License.
*/
using System;
using OpenWire.Client;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
/// <summary>
/// A Temporary Queue

View File

@ -15,11 +15,8 @@
* limitations under the License.
*/
using System;
using OpenWire.Client;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
/// <summary>
/// A Temporary Topic

View File

@ -17,10 +17,7 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
public class ActiveMQTextMessage : ActiveMQMessage, ITextMessage
{

View File

@ -15,11 +15,8 @@
* limitations under the License.
*/
using System;
using OpenWire.Client;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
/// <summary>
/// Summary description for ActiveMQTopic.

View File

@ -10,10 +10,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
public abstract class BaseCommand : AbstractCommand

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for BrokerId

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for BrokerInfo

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for ConnectionError

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for ConnectionId

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for ConnectionInfo

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for ConsumerId

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for ConsumerInfo
@ -39,6 +39,7 @@ namespace OpenWire.Client.Commands
bool browser;
ActiveMQDestination destination;
int prefetchSize;
int maximumPendingMessageLimit;
bool dispatchAsync;
string selector;
string subcriptionName;
@ -55,6 +56,7 @@ namespace OpenWire.Client.Commands
+ " Browser=" + Browser
+ " Destination=" + Destination
+ " PrefetchSize=" + PrefetchSize
+ " MaximumPendingMessageLimit=" + MaximumPendingMessageLimit
+ " DispatchAsync=" + DispatchAsync
+ " Selector=" + Selector
+ " SubcriptionName=" + SubcriptionName
@ -101,6 +103,12 @@ namespace OpenWire.Client.Commands
set { this.prefetchSize = value; }
}
public int MaximumPendingMessageLimit
{
get { return maximumPendingMessageLimit; }
set { this.maximumPendingMessageLimit = value; }
}
public bool DispatchAsync
{
get { return dispatchAsync; }

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for ControlCommand

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for DataArrayResponse

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for DataResponse

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for DestinationInfo

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for DiscoveryEvent

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for ExceptionResponse

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for FlushCommand

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for IntegerResponse

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for JournalQueueAck

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for JournalTopicAck

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for JournalTrace

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for JournalTransaction

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for KeepAliveInfo

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for LocalTransactionId

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for Message

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for MessageAck

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for MessageDispatch

View File

@ -1,87 +1,87 @@
/*
* 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 OpenWire.Client;
using OpenWire.Client.Core;
namespace OpenWire.Client.Commands
{
//
// Marshalling code for Open Wire Format for MessageDispatchNotification
//
//
// 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 class MessageDispatchNotification : BaseCommand
{
public const byte ID_MessageDispatchNotification = 90;
ConsumerId consumerId;
ActiveMQDestination destination;
long deliverySequenceId;
MessageId messageId;
public override string ToString() {
return GetType().Name + "["
+ " ConsumerId=" + ConsumerId
+ " Destination=" + Destination
+ " DeliverySequenceId=" + DeliverySequenceId
+ " MessageId=" + MessageId
+ " ]";
}
public override byte GetDataStructureType() {
return ID_MessageDispatchNotification;
}
// Properties
public ConsumerId ConsumerId
{
get { return consumerId; }
set { this.consumerId = value; }
}
public ActiveMQDestination Destination
{
get { return destination; }
set { this.destination = value; }
}
public long DeliverySequenceId
{
get { return deliverySequenceId; }
set { this.deliverySequenceId = value; }
}
public MessageId MessageId
{
get { return messageId; }
set { this.messageId = value; }
}
}
}
/*
* 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.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for MessageDispatchNotification
//
//
// 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 class MessageDispatchNotification : BaseCommand
{
public const byte ID_MessageDispatchNotification = 90;
ConsumerId consumerId;
ActiveMQDestination destination;
long deliverySequenceId;
MessageId messageId;
public override string ToString() {
return GetType().Name + "["
+ " ConsumerId=" + ConsumerId
+ " Destination=" + Destination
+ " DeliverySequenceId=" + DeliverySequenceId
+ " MessageId=" + MessageId
+ " ]";
}
public override byte GetDataStructureType() {
return ID_MessageDispatchNotification;
}
// Properties
public ConsumerId ConsumerId
{
get { return consumerId; }
set { this.consumerId = value; }
}
public ActiveMQDestination Destination
{
get { return destination; }
set { this.destination = value; }
}
public long DeliverySequenceId
{
get { return deliverySequenceId; }
set { this.deliverySequenceId = value; }
}
public MessageId MessageId
{
get { return messageId; }
set { this.messageId = value; }
}
}
}

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for MessageId

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for ProducerId

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for ProducerInfo

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for RemoveInfo

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for RemoveSubscriptionInfo

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for Response

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for SessionId

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for SessionInfo

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for ShutdownInfo

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for SubscriptionInfo

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for TransactionId

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for TransactionInfo

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for WireFormatInfo

View File

@ -18,10 +18,10 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for XATransactionId