├── .gitignore ├── LICENSE ├── README.md ├── issue_template.md ├── modules ├── andes-core │ ├── broker-plugins │ │ ├── access-control │ │ │ ├── MANIFEST.MF │ │ │ ├── build.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── andes │ │ │ │ │ │ └── server │ │ │ │ │ │ └── security │ │ │ │ │ │ └── access │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── AbstractConfiguration.java │ │ │ │ │ │ ├── Action.java │ │ │ │ │ │ ├── ConfigurationFile.java │ │ │ │ │ │ ├── PlainConfiguration.java │ │ │ │ │ │ ├── Rule.java │ │ │ │ │ │ ├── RuleSet.java │ │ │ │ │ │ └── XMLConfiguration.java │ │ │ │ │ │ ├── logging │ │ │ │ │ │ └── AccessControl_logmessages.properties │ │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── AccessControl.java │ │ │ │ │ │ ├── AccessControlActivator.java │ │ │ │ │ │ └── AccessControlConfiguration.java │ │ │ │ └── resources │ │ │ │ │ └── acl.xsd │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── andes │ │ │ │ └── server │ │ │ │ └── security │ │ │ │ └── access │ │ │ │ └── plugins │ │ │ │ ├── AccessControlTest.java │ │ │ │ ├── PlainConfigurationTest.java │ │ │ │ └── RuleSetTest.java │ │ ├── experimental │ │ │ ├── info │ │ │ │ ├── MANIFEST.MF │ │ │ │ ├── build.properties │ │ │ │ ├── build.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ └── java │ │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── andes │ │ │ │ │ │ └── info │ │ │ │ │ │ ├── Activator.java │ │ │ │ │ │ ├── AppInfo.java │ │ │ │ │ │ ├── Info.java │ │ │ │ │ │ ├── InfoService.java │ │ │ │ │ │ ├── InfoServiceImpl.java │ │ │ │ │ │ ├── SystemInfo.java │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── HttpPoster.java │ │ │ │ │ │ ├── IniFileReader.java │ │ │ │ │ │ ├── SoapClient.java │ │ │ │ │ │ └── XMLWriter.java │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── andes │ │ │ │ │ └── info │ │ │ │ │ ├── systest │ │ │ │ │ └── InfoPluginTest.java │ │ │ │ │ └── test │ │ │ │ │ ├── HttpPosterTest.java │ │ │ │ │ ├── InfoServiceImplTest.java │ │ │ │ │ ├── InfoServlet.java │ │ │ │ │ ├── InfoTest.java │ │ │ │ │ ├── IniFileReaderTest.java │ │ │ │ │ ├── SoapClientTest.java │ │ │ │ │ ├── SystemInfoTest.java │ │ │ │ │ └── XMLWriterTest.java │ │ │ └── shutdown │ │ │ │ ├── MANIFEST.MF │ │ │ │ ├── build.xml │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ ├── org │ │ │ │ └── apache │ │ │ │ │ └── qpid │ │ │ │ │ └── shutdown │ │ │ │ │ ├── Activator.java │ │ │ │ │ ├── Shutdown.java │ │ │ │ │ └── ShutdownMBean.java │ │ │ │ └── shutdown.bnd │ │ ├── extras │ │ │ ├── MANIFEST.MF │ │ │ ├── build.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── andes │ │ │ │ │ └── extras │ │ │ │ │ ├── Activator.java │ │ │ │ │ └── exchanges │ │ │ │ │ ├── diagnostic │ │ │ │ │ ├── DiagnosticExchange.java │ │ │ │ │ └── DiagnosticExchangeType.java │ │ │ │ │ └── example │ │ │ │ │ ├── TestExchange.java │ │ │ │ │ └── TestExchangeType.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── andes │ │ │ │ └── server │ │ │ │ └── plugins │ │ │ │ └── ExtrasTest.java │ │ └── firewall │ │ │ ├── MANIFEST.MF │ │ │ ├── build.xml │ │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── andes │ │ │ │ └── server │ │ │ │ └── security │ │ │ │ └── access │ │ │ │ ├── config │ │ │ │ ├── FirewallException.java │ │ │ │ └── FirewallRule.java │ │ │ │ └── plugins │ │ │ │ ├── Firewall.java │ │ │ │ ├── FirewallActivator.java │ │ │ │ └── FirewallConfiguration.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── wso2 │ │ │ └── andes │ │ │ └── server │ │ │ └── security │ │ │ └── access │ │ │ ├── FirewallConfigurationTest.java │ │ │ └── FirewallPluginTest.java │ ├── broker │ │ ├── bin │ │ │ ├── create-example-ssl-stores.bat │ │ │ ├── create-example-ssl-stores.sh │ │ │ ├── msTool.sh │ │ │ ├── qpid-passwd │ │ │ ├── qpid-server │ │ │ ├── qpid-server.bat │ │ │ ├── qpid.stop │ │ │ └── qpid.stopall │ │ ├── build.xml │ │ ├── etc │ │ │ ├── config.xml │ │ │ ├── debug.log4j.xml │ │ │ ├── log4j.xml │ │ │ ├── md5passwd │ │ │ ├── mstool-log4j.xml │ │ │ ├── passwd │ │ │ ├── qpid-server.conf │ │ │ ├── qpid-server.conf.jpp │ │ │ ├── qpid.passwd │ │ │ └── virtualhosts.xml │ │ ├── python-test.xml │ │ ├── scripts │ │ │ └── resetAlerting.sh │ │ └── src │ │ │ ├── main │ │ │ ├── grammar │ │ │ │ └── SelectorParser.jj │ │ │ ├── java │ │ │ │ ├── log4j.properties │ │ │ │ └── org │ │ │ │ │ ├── apache │ │ │ │ │ └── log4j │ │ │ │ │ │ ├── QpidCompositeRollingAppender.java │ │ │ │ │ │ └── xml │ │ │ │ │ │ └── QpidLog4JConfigurator.java │ │ │ │ │ ├── dna │ │ │ │ │ └── mqtt │ │ │ │ │ │ ├── commons │ │ │ │ │ │ └── Constants.java │ │ │ │ │ │ ├── moquette │ │ │ │ │ │ ├── MQTTException.java │ │ │ │ │ │ ├── messaging │ │ │ │ │ │ │ └── spi │ │ │ │ │ │ │ │ ├── IMatchingCondition.java │ │ │ │ │ │ │ │ ├── IMessaging.java │ │ │ │ │ │ │ │ ├── IPersistentSubscriptionStore.java │ │ │ │ │ │ │ │ ├── IStorageService.java │ │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ ├── DebugUtils.java │ │ │ │ │ │ │ │ ├── HawtDBStorageService.java │ │ │ │ │ │ │ │ ├── MemoryStorageService.java │ │ │ │ │ │ │ │ ├── MqttExceptionHandler.java │ │ │ │ │ │ │ │ ├── ProtocolProcessor.java │ │ │ │ │ │ │ │ ├── SimpleMessaging.java │ │ │ │ │ │ │ │ ├── UserAuthenticator.java │ │ │ │ │ │ │ │ ├── ValueEvent.java │ │ │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ │ ├── DisconnectEvent.java │ │ │ │ │ │ │ │ ├── InitEvent.java │ │ │ │ │ │ │ │ ├── LostConnectionEvent.java │ │ │ │ │ │ │ │ ├── MessagingEvent.java │ │ │ │ │ │ │ │ ├── OutputMessagingEvent.java │ │ │ │ │ │ │ │ ├── ProtocolEvent.java │ │ │ │ │ │ │ │ ├── PubAckEvent.java │ │ │ │ │ │ │ │ ├── PublishEvent.java │ │ │ │ │ │ │ │ ├── RepublishEvent.java │ │ │ │ │ │ │ │ ├── StopEvent.java │ │ │ │ │ │ │ │ └── SubscribeEvent.java │ │ │ │ │ │ │ │ ├── storage │ │ │ │ │ │ │ │ └── StoredPublishEvent.java │ │ │ │ │ │ │ │ └── subscriptions │ │ │ │ │ │ │ │ ├── Subscription.java │ │ │ │ │ │ │ │ ├── SubscriptionsStore.java │ │ │ │ │ │ │ │ ├── Token.java │ │ │ │ │ │ │ │ └── TreeNode.java │ │ │ │ │ │ ├── parser │ │ │ │ │ │ │ └── netty │ │ │ │ │ │ │ │ ├── ConnAckDecoder.java │ │ │ │ │ │ │ │ ├── ConnAckEncoder.java │ │ │ │ │ │ │ │ ├── ConnectDecoder.java │ │ │ │ │ │ │ │ ├── ConnectEncoder.java │ │ │ │ │ │ │ │ ├── DemuxDecoder.java │ │ │ │ │ │ │ │ ├── DemuxEncoder.java │ │ │ │ │ │ │ │ ├── DisconnectDecoder.java │ │ │ │ │ │ │ │ ├── DisconnectEncoder.java │ │ │ │ │ │ │ │ ├── MQTTDecoder.java │ │ │ │ │ │ │ │ ├── MQTTEncoder.java │ │ │ │ │ │ │ │ ├── MessageIDDecoder.java │ │ │ │ │ │ │ │ ├── PingReqDecoder.java │ │ │ │ │ │ │ │ ├── PingReqEncoder.java │ │ │ │ │ │ │ │ ├── PingRespDecoder.java │ │ │ │ │ │ │ │ ├── PingRespEncoder.java │ │ │ │ │ │ │ │ ├── PubAckDecoder.java │ │ │ │ │ │ │ │ ├── PubAckEncoder.java │ │ │ │ │ │ │ │ ├── PubCompDecoder.java │ │ │ │ │ │ │ │ ├── PubCompEncoder.java │ │ │ │ │ │ │ │ ├── PubRecDecoder.java │ │ │ │ │ │ │ │ ├── PubRecEncoder.java │ │ │ │ │ │ │ │ ├── PubRelDecoder.java │ │ │ │ │ │ │ │ ├── PubRelEncoder.java │ │ │ │ │ │ │ │ ├── PublishDecoder.java │ │ │ │ │ │ │ │ ├── PublishEncoder.java │ │ │ │ │ │ │ │ ├── SubAckDecoder.java │ │ │ │ │ │ │ │ ├── SubAckEncoder.java │ │ │ │ │ │ │ │ ├── SubscribeDecoder.java │ │ │ │ │ │ │ │ ├── SubscribeEncoder.java │ │ │ │ │ │ │ │ ├── UnsubAckDecoder.java │ │ │ │ │ │ │ │ ├── UnsubAckEncoder.java │ │ │ │ │ │ │ │ ├── UnsubscribeDecoder.java │ │ │ │ │ │ │ │ ├── UnsubscribeEncoder.java │ │ │ │ │ │ │ │ └── Utils.java │ │ │ │ │ │ ├── proto │ │ │ │ │ │ │ ├── Utils.java │ │ │ │ │ │ │ └── messages │ │ │ │ │ │ │ │ ├── AbstractMessage.java │ │ │ │ │ │ │ │ ├── ConnAckMessage.java │ │ │ │ │ │ │ │ ├── ConnectMessage.java │ │ │ │ │ │ │ │ ├── DisconnectMessage.java │ │ │ │ │ │ │ │ ├── MessageIDMessage.java │ │ │ │ │ │ │ │ ├── PingReqMessage.java │ │ │ │ │ │ │ │ ├── PingRespMessage.java │ │ │ │ │ │ │ │ ├── PubAckMessage.java │ │ │ │ │ │ │ │ ├── PubCompMessage.java │ │ │ │ │ │ │ │ ├── PubRecMessage.java │ │ │ │ │ │ │ │ ├── PubRelMessage.java │ │ │ │ │ │ │ │ ├── PublishMessage.java │ │ │ │ │ │ │ │ ├── SubAckMessage.java │ │ │ │ │ │ │ │ ├── SubscribeMessage.java │ │ │ │ │ │ │ │ ├── UnsubAckMessage.java │ │ │ │ │ │ │ │ ├── UnsubscribeMessage.java │ │ │ │ │ │ │ │ └── ZeroLengthMessage.java │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── AuthenticationInfo.java │ │ │ │ │ │ │ ├── ConfigurationParser.java │ │ │ │ │ │ │ ├── ConnectionDescriptor.java │ │ │ │ │ │ │ ├── Constants.java │ │ │ │ │ │ │ ├── IAuthenticator.java │ │ │ │ │ │ │ ├── IAuthorizer.java │ │ │ │ │ │ │ ├── Server.java │ │ │ │ │ │ │ ├── ServerAcceptor.java │ │ │ │ │ │ │ ├── ServerChannel.java │ │ │ │ │ │ │ └── netty │ │ │ │ │ │ │ ├── MoquetteIdleTimoutHandler.java │ │ │ │ │ │ │ ├── NettyAcceptor.java │ │ │ │ │ │ │ ├── NettyChannel.java │ │ │ │ │ │ │ ├── NettyMQTTHandler.java │ │ │ │ │ │ │ ├── exception │ │ │ │ │ │ │ └── MQTTInitializationException.java │ │ │ │ │ │ │ └── metrics │ │ │ │ │ │ │ ├── BytesMetrics.java │ │ │ │ │ │ │ ├── BytesMetricsCollector.java │ │ │ │ │ │ │ ├── BytesMetricsHandler.java │ │ │ │ │ │ │ ├── MessageMetrics.java │ │ │ │ │ │ │ ├── MessageMetricsCollector.java │ │ │ │ │ │ │ ├── MessageMetricsHandler.java │ │ │ │ │ │ │ └── SSLHandlerFactory.java │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ ├── AndesMQTTBridge.java │ │ │ │ │ │ ├── MQTTPingRequest.java │ │ │ │ │ │ ├── MQTTSubscriptionStore.java │ │ │ │ │ │ ├── MqttLogExceptionHandler.java │ │ │ │ │ │ ├── QOSLevel.java │ │ │ │ │ │ └── Subscribers.java │ │ │ │ │ └── wso2 │ │ │ │ │ └── andes │ │ │ │ │ ├── amqp │ │ │ │ │ ├── AMQPDeliveryRule.java │ │ │ │ │ ├── AMQPLocalSubscription.java │ │ │ │ │ ├── AMQPObjectStore.java │ │ │ │ │ ├── AMQPUtils.java │ │ │ │ │ ├── AmqpNoLocalRule.java │ │ │ │ │ ├── MaximumNumOfDeliveryRule.java │ │ │ │ │ ├── QpidAndesBridge.java │ │ │ │ │ └── QpidStoredMessage.java │ │ │ │ │ ├── configuration │ │ │ │ │ ├── AndesConfigurationManager.java │ │ │ │ │ ├── StoreConfiguration.java │ │ │ │ │ ├── enums │ │ │ │ │ │ ├── AndesConfiguration.java │ │ │ │ │ │ ├── MQTTAuthoriztionPermissionLevel.java │ │ │ │ │ │ ├── MQTTUserAuthenticationScheme.java │ │ │ │ │ │ └── MQTTUserAuthorizationScheme.java │ │ │ │ │ ├── modules │ │ │ │ │ │ └── JKSStore.java │ │ │ │ │ ├── qpid │ │ │ │ │ │ ├── BindingConfig.java │ │ │ │ │ │ ├── BindingConfigType.java │ │ │ │ │ │ ├── BridgeConfig.java │ │ │ │ │ │ ├── BridgeConfigType.java │ │ │ │ │ │ ├── BrokerConfig.java │ │ │ │ │ │ ├── BrokerConfigType.java │ │ │ │ │ │ ├── ConfigObjectType.java │ │ │ │ │ │ ├── ConfigProperty.java │ │ │ │ │ │ ├── ConfigStore.java │ │ │ │ │ │ ├── Configuration.java │ │ │ │ │ │ ├── ConfigurationManager.java │ │ │ │ │ │ ├── ConfiguredObject.java │ │ │ │ │ │ ├── ConnectionConfig.java │ │ │ │ │ │ ├── ConnectionConfigType.java │ │ │ │ │ │ ├── ExchangeConfig.java │ │ │ │ │ │ ├── ExchangeConfigType.java │ │ │ │ │ │ ├── ExchangeConfiguration.java │ │ │ │ │ │ ├── ExchangeConfigurationPlugin.java │ │ │ │ │ │ ├── LinkConfig.java │ │ │ │ │ │ ├── LinkConfigType.java │ │ │ │ │ │ ├── QueueConfig.java │ │ │ │ │ │ ├── QueueConfigType.java │ │ │ │ │ │ ├── QueueConfiguration.java │ │ │ │ │ │ ├── ServerConfiguration.java │ │ │ │ │ │ ├── ServerNetworkTransportConfiguration.java │ │ │ │ │ │ ├── SessionConfig.java │ │ │ │ │ │ ├── SessionConfigType.java │ │ │ │ │ │ ├── SubscriptionConfig.java │ │ │ │ │ │ ├── SubscriptionConfigType.java │ │ │ │ │ │ ├── SystemConfig.java │ │ │ │ │ │ ├── SystemConfigImpl.java │ │ │ │ │ │ ├── SystemConfigType.java │ │ │ │ │ │ ├── TopicConfig.java │ │ │ │ │ │ ├── TopicConfiguration.java │ │ │ │ │ │ ├── VirtualHostConfig.java │ │ │ │ │ │ ├── VirtualHostConfigType.java │ │ │ │ │ │ ├── VirtualHostConfiguration.java │ │ │ │ │ │ ├── management │ │ │ │ │ │ │ └── ConfigurationManagementMBean.java │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── ConfigurationPlugin.java │ │ │ │ │ │ │ ├── ConfigurationPluginFactory.java │ │ │ │ │ │ │ ├── SlowConsumerDetectionConfiguration.java │ │ │ │ │ │ │ ├── SlowConsumerDetectionPolicyConfiguration.java │ │ │ │ │ │ │ └── SlowConsumerDetectionQueueConfiguration.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── ConfigurationProperties.java │ │ │ │ │ │ ├── ConfigurationProperty.java │ │ │ │ │ │ ├── ImmutableMetaProperties.java │ │ │ │ │ │ ├── MetaProperties.java │ │ │ │ │ │ └── TopicMessageDeliveryStrategy.java │ │ │ │ │ ├── kernel │ │ │ │ │ ├── AMQPConstructStore.java │ │ │ │ │ ├── AMQPMetaDataHandler.java │ │ │ │ │ ├── Andes.java │ │ │ │ │ ├── AndesAckData.java │ │ │ │ │ ├── AndesAckEvent.java │ │ │ │ │ ├── AndesBinding.java │ │ │ │ │ ├── AndesChannel.java │ │ │ │ │ ├── AndesConstants.java │ │ │ │ │ ├── AndesContent.java │ │ │ │ │ ├── AndesContext.java │ │ │ │ │ ├── AndesContextInformationManager.java │ │ │ │ │ ├── AndesContextStore.java │ │ │ │ │ ├── AndesException.java │ │ │ │ │ ├── AndesKernelBoot.java │ │ │ │ │ ├── AndesMessage.java │ │ │ │ │ ├── AndesMessageMetadata.java │ │ │ │ │ ├── AndesMessagePart.java │ │ │ │ │ ├── AndesRecoveryTask.java │ │ │ │ │ ├── AndesUtils.java │ │ │ │ │ ├── ChannelMessageStatus.java │ │ │ │ │ ├── ClusterNotificationListener.java │ │ │ │ │ ├── ConcurrentTrackingList.java │ │ │ │ │ ├── DeliverableAndesMetadata.java │ │ │ │ │ ├── DeliveryMessageHandler.java │ │ │ │ │ ├── DeliveryResponsibility.java │ │ │ │ │ ├── DestinationType.java │ │ │ │ │ ├── DisablePubAckImpl.java │ │ │ │ │ ├── DisruptorCachedContent.java │ │ │ │ │ ├── DtxStore.java │ │ │ │ │ ├── DurableStoreConnection.java │ │ │ │ │ ├── ExpiredMessageHandler.java │ │ │ │ │ ├── FlowControlListener.java │ │ │ │ │ ├── FlowControlManager.java │ │ │ │ │ ├── FlowControlledQueueMessageDeliveryImpl.java │ │ │ │ │ ├── MessageDeliveryStrategy.java │ │ │ │ │ ├── MessageExpiryManager.java │ │ │ │ │ ├── MessageFlusher.java │ │ │ │ │ ├── MessageHandler.java │ │ │ │ │ ├── MessageStatus.java │ │ │ │ │ ├── MessageStore.java │ │ │ │ │ ├── MessagingEngine.java │ │ │ │ │ ├── NoLossBurstTopicMessageDeliveryImpl.java │ │ │ │ │ ├── PeriodicExpiryMessageDeletionTask.java │ │ │ │ │ ├── PreDeliveryExpiryMessageDeletionTask.java │ │ │ │ │ ├── ProtocolDeliveryFailureException.java │ │ │ │ │ ├── ProtocolDeliveryRulesFailureException.java │ │ │ │ │ ├── ProtocolMessage.java │ │ │ │ │ ├── ProtocolType.java │ │ │ │ │ ├── PurgedMessageHandler.java │ │ │ │ │ ├── QueueBrowserMessageFlusher.java │ │ │ │ │ ├── RetainedContent.java │ │ │ │ │ ├── SafeZoneUpdateEventTriggeringTask.java │ │ │ │ │ ├── SlowestSubscriberTopicMessageDeliveryImpl.java │ │ │ │ │ ├── SubscriptionAlreadyClosedException.java │ │ │ │ │ ├── SubscriptionAlreadyExistsException.java │ │ │ │ │ ├── SubscriptionListener.java │ │ │ │ │ ├── TopicParserUtil.java │ │ │ │ │ ├── disruptor │ │ │ │ │ │ ├── ConcurrentBatchEventHandler.java │ │ │ │ │ │ ├── DisruptorEventCallback.java │ │ │ │ │ │ ├── InboundEventHandler.java │ │ │ │ │ │ ├── LogExceptionHandler.java │ │ │ │ │ │ ├── compression │ │ │ │ │ │ │ └── LZ4CompressionHelper.java │ │ │ │ │ │ ├── delivery │ │ │ │ │ │ │ ├── ConcurrentContentReadTaskBatchProcessor.java │ │ │ │ │ │ │ ├── ContentCacheCreator.java │ │ │ │ │ │ │ ├── ContentDecompressionHandler.java │ │ │ │ │ │ │ ├── DeliveryEventCleanupHandler.java │ │ │ │ │ │ │ ├── DeliveryEventData.java │ │ │ │ │ │ │ ├── DeliveryEventHandler.java │ │ │ │ │ │ │ ├── DeliveryExceptionHandler.java │ │ │ │ │ │ │ └── DisruptorBasedFlusher.java │ │ │ │ │ │ ├── inbound │ │ │ │ │ │ │ ├── AckEventBatchHandler.java │ │ │ │ │ │ │ ├── AckHandler.java │ │ │ │ │ │ │ ├── AndesInboundStateEvent.java │ │ │ │ │ │ │ ├── ContentChunkHandler.java │ │ │ │ │ │ │ ├── ContentCompressionStrategy.java │ │ │ │ │ │ │ ├── ContentPartHolder.java │ │ │ │ │ │ │ ├── DisabledContentCompressionStrategy.java │ │ │ │ │ │ │ ├── DtxDbWriter.java │ │ │ │ │ │ │ ├── InboundBindingEvent.java │ │ │ │ │ │ │ ├── InboundBindingSyncEvent.java │ │ │ │ │ │ │ ├── InboundChannelFlowEvent.java │ │ │ │ │ │ │ ├── InboundDBSyncRequestEvent.java │ │ │ │ │ │ │ ├── InboundDeleteDLCMessagesEvent.java │ │ │ │ │ │ │ ├── InboundDeleteMessagesEvent.java │ │ │ │ │ │ │ ├── InboundEventContainer.java │ │ │ │ │ │ │ ├── InboundEventManager.java │ │ │ │ │ │ │ ├── InboundExchangeEvent.java │ │ │ │ │ │ │ ├── InboundExchangeSyncEvent.java │ │ │ │ │ │ │ ├── InboundKernelOpsEvent.java │ │ │ │ │ │ │ ├── InboundMessageList.java │ │ │ │ │ │ │ ├── InboundMessageRecoveryEvent.java │ │ │ │ │ │ │ ├── InboundMessageRejectEvent.java │ │ │ │ │ │ │ ├── InboundQueueEvent.java │ │ │ │ │ │ │ ├── InboundQueueSyncEvent.java │ │ │ │ │ │ │ ├── InboundSubscriptionEvent.java │ │ │ │ │ │ │ ├── InboundSubscriptionSyncEvent.java │ │ │ │ │ │ │ ├── InboundTransactionEvent.java │ │ │ │ │ │ │ ├── LZ4ContentCompressionStrategy.java │ │ │ │ │ │ │ ├── MessagePreProcessor.java │ │ │ │ │ │ │ ├── MessageWriter.java │ │ │ │ │ │ │ ├── PubAckHandler.java │ │ │ │ │ │ │ ├── QueueInfo.java │ │ │ │ │ │ │ └── StateEventHandler.java │ │ │ │ │ │ └── waitStrategy │ │ │ │ │ │ │ └── SleepingBlockingWaitStrategy.java │ │ │ │ │ ├── dtx │ │ │ │ │ │ ├── AlreadyKnownDtxException.java │ │ │ │ │ │ ├── AndesPreparedMessageMetadata.java │ │ │ │ │ │ ├── DistributedTransaction.java │ │ │ │ │ │ ├── DtxBranch.java │ │ │ │ │ │ ├── DtxRegistry.java │ │ │ │ │ │ ├── JoinAndResumeDtxException.java │ │ │ │ │ │ ├── NotAssociatedDtxException.java │ │ │ │ │ │ ├── SuspendAndFailDtxException.java │ │ │ │ │ │ └── UnknownDtxBranchException.java │ │ │ │ │ ├── registry │ │ │ │ │ │ ├── MessageRouterRegistry.java │ │ │ │ │ │ ├── StorageQueueRegistry.java │ │ │ │ │ │ └── SubscriptionRegistry.java │ │ │ │ │ ├── router │ │ │ │ │ │ ├── AndesMessageRouter.java │ │ │ │ │ │ ├── DiscardMessageRouter.java │ │ │ │ │ │ ├── MQTTMessageRouter.java │ │ │ │ │ │ ├── MessageRouterFactory.java │ │ │ │ │ │ ├── QueueMessageRouter.java │ │ │ │ │ │ ├── TopicMessageRouter.java │ │ │ │ │ │ └── TopicRoutingMatcher.java │ │ │ │ │ ├── slot │ │ │ │ │ │ ├── AbstractSlotManager.java │ │ │ │ │ │ ├── ConnectionException.java │ │ │ │ │ │ ├── CoordinatorConnectionListener.java │ │ │ │ │ │ ├── DeliveryTaskExceptionHandler.java │ │ │ │ │ │ ├── MessageDeliveryTask.java │ │ │ │ │ │ ├── RecoverySlotCreator.java │ │ │ │ │ │ ├── Slot.java │ │ │ │ │ │ ├── SlotCoordinationConstants.java │ │ │ │ │ │ ├── SlotCoordinator.java │ │ │ │ │ │ ├── SlotCoordinatorCluster.java │ │ │ │ │ │ ├── SlotCoordinatorStandalone.java │ │ │ │ │ │ ├── SlotCreator.java │ │ │ │ │ │ ├── SlotDeleteSafeZoneCalc.java │ │ │ │ │ │ ├── SlotDeletingTask.java │ │ │ │ │ │ ├── SlotDeletionExecutor.java │ │ │ │ │ │ ├── SlotDeliveryWorkerManager.java │ │ │ │ │ │ ├── SlotManagerClusterMode.java │ │ │ │ │ │ ├── SlotManagerStandalone.java │ │ │ │ │ │ ├── SlotMessageCounter.java │ │ │ │ │ │ ├── SlotReAssignTask.java │ │ │ │ │ │ ├── SlotState.java │ │ │ │ │ │ └── StorageQueueData.java │ │ │ │ │ └── subscription │ │ │ │ │ │ ├── AndesSubscription.java │ │ │ │ │ │ ├── AndesSubscriptionFactory.java │ │ │ │ │ │ ├── AndesSubscriptionManager.java │ │ │ │ │ │ ├── DurableTopicSubscriber.java │ │ │ │ │ │ ├── InactiveSubscriber.java │ │ │ │ │ │ ├── NullSubscription.java │ │ │ │ │ │ ├── OutBoundMessageTracker.java │ │ │ │ │ │ ├── OutboundSubscription.java │ │ │ │ │ │ ├── StorageQueue.java │ │ │ │ │ │ ├── SubscriberConnection.java │ │ │ │ │ │ └── SubscriptionException.java │ │ │ │ │ ├── metrics │ │ │ │ │ └── MetricsConstants.java │ │ │ │ │ ├── mqtt │ │ │ │ │ ├── MQTTAuthorizationSubject.java │ │ │ │ │ ├── MQTTException.java │ │ │ │ │ ├── MQTTLocalSubscription.java │ │ │ │ │ ├── MQTTMessage.java │ │ │ │ │ ├── MQTTMessageContext.java │ │ │ │ │ ├── MQTTMessageMetaData.java │ │ │ │ │ ├── MQTTMetaDataHandler.java │ │ │ │ │ ├── MQTTPublisherChannel.java │ │ │ │ │ ├── MQTTSubscription.java │ │ │ │ │ ├── MQTTSubscriptionInformation.java │ │ │ │ │ ├── MQTTopicManager.java │ │ │ │ │ ├── MQTTopics.java │ │ │ │ │ ├── connectors │ │ │ │ │ │ ├── InMemoryConnector.java │ │ │ │ │ │ ├── MQTTConnector.java │ │ │ │ │ │ └── PersistenceStoreConnector.java │ │ │ │ │ └── utils │ │ │ │ │ │ └── MQTTUtils.java │ │ │ │ │ ├── policies │ │ │ │ │ ├── SlowConsumerPolicyPlugin.java │ │ │ │ │ └── SlowConsumerPolicyPluginFactory.java │ │ │ │ │ ├── qmf │ │ │ │ │ ├── CompletionCode.java │ │ │ │ │ ├── ManagementExchange.java │ │ │ │ │ ├── QMFBrokerRequestCommand.java │ │ │ │ │ ├── QMFBrokerResponseCommand.java │ │ │ │ │ ├── QMFClass.java │ │ │ │ │ ├── QMFClassIndicationCommand.java │ │ │ │ │ ├── QMFClassQueryCommand.java │ │ │ │ │ ├── QMFCommand.java │ │ │ │ │ ├── QMFCommandCompletionCommand.java │ │ │ │ │ ├── QMFCommandDecoder.java │ │ │ │ │ ├── QMFCommandHeader.java │ │ │ │ │ ├── QMFEventClass.java │ │ │ │ │ ├── QMFEventCommand.java │ │ │ │ │ ├── QMFEventSeverity.java │ │ │ │ │ ├── QMFGetQueryCommand.java │ │ │ │ │ ├── QMFMessage.java │ │ │ │ │ ├── QMFMethod.java │ │ │ │ │ ├── QMFMethodInvocation.java │ │ │ │ │ ├── QMFMethodRequestCommand.java │ │ │ │ │ ├── QMFMethodResponseCommand.java │ │ │ │ │ ├── QMFObject.java │ │ │ │ │ ├── QMFObjectClass.java │ │ │ │ │ ├── QMFOperation.java │ │ │ │ │ ├── QMFPackage.java │ │ │ │ │ ├── QMFPackageIndicationCommand.java │ │ │ │ │ ├── QMFPackageQueryCommand.java │ │ │ │ │ ├── QMFProperty.java │ │ │ │ │ ├── QMFSchemaRequestCommand.java │ │ │ │ │ ├── QMFSchemaResponseCommand.java │ │ │ │ │ ├── QMFService.java │ │ │ │ │ ├── QMFStatistic.java │ │ │ │ │ └── QMFType.java │ │ │ │ │ ├── server │ │ │ │ │ ├── AMQBrokerManagerMBean.java │ │ │ │ │ ├── AMQChannel.java │ │ │ │ │ ├── Broker.java │ │ │ │ │ ├── BrokerOptions.java │ │ │ │ │ ├── ClusterResourceHolder.java │ │ │ │ │ ├── ExtractResendAndRequeue.java │ │ │ │ │ ├── Main.java │ │ │ │ │ ├── NameValidationUtils.java │ │ │ │ │ ├── ProtocolExclusion.java │ │ │ │ │ ├── ack │ │ │ │ │ │ ├── LimitedSizeQueueEntryHolder.java │ │ │ │ │ │ ├── UnacknowledgedMessageMap.java │ │ │ │ │ │ └── UnacknowledgedMessageMapImpl.java │ │ │ │ │ ├── binding │ │ │ │ │ │ ├── Binding.java │ │ │ │ │ │ └── BindingFactory.java │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── ClusterAgent.java │ │ │ │ │ │ ├── ClusterManagementInformationMBean.java │ │ │ │ │ │ ├── ClusterManager.java │ │ │ │ │ │ ├── CoordinationConfigurableClusterAgent.java │ │ │ │ │ │ ├── CoordinationStrategy.java │ │ │ │ │ │ ├── CoordinatorInformation.java │ │ │ │ │ │ ├── NodeDetail.java │ │ │ │ │ │ ├── NodeHeartBeatData.java │ │ │ │ │ │ ├── RDBMSCoordinationStrategy.java │ │ │ │ │ │ ├── coordination │ │ │ │ │ │ │ ├── BindingNotificationHandler.java │ │ │ │ │ │ │ ├── ClusterNotification.java │ │ │ │ │ │ │ ├── ClusterNotificationAgent.java │ │ │ │ │ │ │ ├── ClusterNotificationListenerManager.java │ │ │ │ │ │ │ ├── ClusterOutageException.java │ │ │ │ │ │ │ ├── CoordinationComponentFactory.java │ │ │ │ │ │ │ ├── CoordinationConstants.java │ │ │ │ │ │ │ ├── DBSyncNotificationHandler.java │ │ │ │ │ │ │ ├── ExchangeNotificationHandler.java │ │ │ │ │ │ │ ├── MessageIdGenerator.java │ │ │ │ │ │ │ ├── QueueNotificationHandler.java │ │ │ │ │ │ │ ├── SlotAgent.java │ │ │ │ │ │ │ ├── StandaloneMockNotificationAgent.java │ │ │ │ │ │ │ ├── SubscriptionNotificationHandler.java │ │ │ │ │ │ │ ├── TimeStampBasedMessageIdGenerator.java │ │ │ │ │ │ │ └── rdbms │ │ │ │ │ │ │ │ ├── DatabaseSlotAgent.java │ │ │ │ │ │ │ │ ├── MembershipEvent.java │ │ │ │ │ │ │ │ ├── MembershipEventType.java │ │ │ │ │ │ │ │ ├── MembershipListenerTask.java │ │ │ │ │ │ │ │ ├── RDBMSBasedNotificationAgentImpl.java │ │ │ │ │ │ │ │ ├── RDBMSClusterNotificationListenerImpl.java │ │ │ │ │ │ │ │ ├── RDBMSMembershipEventingEngine.java │ │ │ │ │ │ │ │ └── RDBMSMembershipListener.java │ │ │ │ │ │ └── error │ │ │ │ │ │ │ └── detection │ │ │ │ │ │ │ ├── DisabledNetworkPartitionDetector.java │ │ │ │ │ │ │ ├── NetworkPartitionDetector.java │ │ │ │ │ │ │ └── NetworkPartitionListener.java │ │ │ │ │ ├── connection │ │ │ │ │ │ ├── ConnectionRegistry.java │ │ │ │ │ │ └── IConnectionRegistry.java │ │ │ │ │ ├── exchange │ │ │ │ │ │ ├── AbstractExchange.java │ │ │ │ │ │ ├── AbstractExchangeMBean.java │ │ │ │ │ │ ├── DefaultExchangeFactory.java │ │ │ │ │ │ ├── DefaultExchangeRegistry.java │ │ │ │ │ │ ├── DirectExchange.java │ │ │ │ │ │ ├── DirectExchangeMBean.java │ │ │ │ │ │ ├── Exchange.java │ │ │ │ │ │ ├── ExchangeFactory.java │ │ │ │ │ │ ├── ExchangeInUseException.java │ │ │ │ │ │ ├── ExchangeInitialiser.java │ │ │ │ │ │ ├── ExchangeReferrer.java │ │ │ │ │ │ ├── ExchangeRegistry.java │ │ │ │ │ │ ├── ExchangeType.java │ │ │ │ │ │ ├── FanoutExchange.java │ │ │ │ │ │ ├── FanoutExchangeMBean.java │ │ │ │ │ │ ├── HeadersBinding.java │ │ │ │ │ │ ├── HeadersExchange.java │ │ │ │ │ │ ├── HeadersExchangeMBean.java │ │ │ │ │ │ ├── MessageRouter.java │ │ │ │ │ │ ├── TopicExchange.java │ │ │ │ │ │ ├── TopicExchangeMBean.java │ │ │ │ │ │ ├── headers │ │ │ │ │ │ │ ├── HeaderKey.java │ │ │ │ │ │ │ ├── HeaderKeyDictionary.java │ │ │ │ │ │ │ ├── HeaderMatcherResult.java │ │ │ │ │ │ │ ├── HeadersMatcherDFAState.java │ │ │ │ │ │ │ └── HeadersParser.java │ │ │ │ │ │ └── topic │ │ │ │ │ │ │ ├── TopicExchangeResult.java │ │ │ │ │ │ │ ├── TopicMatcherDFAState.java │ │ │ │ │ │ │ ├── TopicMatcherResult.java │ │ │ │ │ │ │ ├── TopicNormalizer.java │ │ │ │ │ │ │ ├── TopicParser.java │ │ │ │ │ │ │ ├── TopicWord.java │ │ │ │ │ │ │ └── TopicWordDictionary.java │ │ │ │ │ ├── federation │ │ │ │ │ │ ├── Bridge.java │ │ │ │ │ │ └── BrokerLink.java │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── ArithmeticExpression.java │ │ │ │ │ │ ├── BinaryExpression.java │ │ │ │ │ │ ├── BooleanExpression.java │ │ │ │ │ │ ├── ComparisonExpression.java │ │ │ │ │ │ ├── ConstantExpression.java │ │ │ │ │ │ ├── Expression.java │ │ │ │ │ │ ├── FilterManager.java │ │ │ │ │ │ ├── FilterManagerFactory.java │ │ │ │ │ │ ├── JMSSelectorFilter.java │ │ │ │ │ │ ├── LogicExpression.java │ │ │ │ │ │ ├── MessageFilter.java │ │ │ │ │ │ ├── NoConsumerFilter.java │ │ │ │ │ │ ├── PropertyExpression.java │ │ │ │ │ │ ├── SimpleFilterManager.java │ │ │ │ │ │ ├── UnaryExpression.java │ │ │ │ │ │ ├── XPathExpression.java │ │ │ │ │ │ ├── XQueryExpression.java │ │ │ │ │ │ └── XalanXPathEvaluator.java │ │ │ │ │ ├── flow │ │ │ │ │ │ ├── AbstractFlowCreditManager.java │ │ │ │ │ │ ├── BytesOnlyCreditManager.java │ │ │ │ │ │ ├── CreditCreditManager.java │ │ │ │ │ │ ├── FlowCreditManager.java │ │ │ │ │ │ ├── FlowCreditManager_0_10.java │ │ │ │ │ │ ├── LimitlessCreditManager.java │ │ │ │ │ │ ├── MessageAndBytesCreditManager.java │ │ │ │ │ │ ├── MessageOnlyCreditManager.java │ │ │ │ │ │ ├── Pre0_10CreditManager.java │ │ │ │ │ │ └── WindowCreditManager.java │ │ │ │ │ ├── handler │ │ │ │ │ │ ├── AccessRequestHandler.java │ │ │ │ │ │ ├── BasicAckMethodHandler.java │ │ │ │ │ │ ├── BasicCancelMethodHandler.java │ │ │ │ │ │ ├── BasicConsumeMethodHandler.java │ │ │ │ │ │ ├── BasicGetMethodHandler.java │ │ │ │ │ │ ├── BasicPublishMethodHandler.java │ │ │ │ │ │ ├── BasicQosHandler.java │ │ │ │ │ │ ├── BasicRecoverMethodHandler.java │ │ │ │ │ │ ├── BasicRecoverSyncMethodHandler.java │ │ │ │ │ │ ├── BasicRejectMethodHandler.java │ │ │ │ │ │ ├── ChannelCloseHandler.java │ │ │ │ │ │ ├── ChannelCloseOkHandler.java │ │ │ │ │ │ ├── ChannelFlowHandler.java │ │ │ │ │ │ ├── ChannelOpenHandler.java │ │ │ │ │ │ ├── ConnectionCloseMethodHandler.java │ │ │ │ │ │ ├── ConnectionCloseOkMethodHandler.java │ │ │ │ │ │ ├── ConnectionOpenMethodHandler.java │ │ │ │ │ │ ├── ConnectionSecureOkMethodHandler.java │ │ │ │ │ │ ├── ConnectionStartOkMethodHandler.java │ │ │ │ │ │ ├── ConnectionTuneOkMethodHandler.java │ │ │ │ │ │ ├── DtxCommitHandler.java │ │ │ │ │ │ ├── DtxEndHandler.java │ │ │ │ │ │ ├── DtxForgetHandler.java │ │ │ │ │ │ ├── DtxPrepareHandler.java │ │ │ │ │ │ ├── DtxRecoverHandler.java │ │ │ │ │ │ ├── DtxRollbackHandler.java │ │ │ │ │ │ ├── DtxSelectHandler.java │ │ │ │ │ │ ├── DtxSetTimeoutHandler.java │ │ │ │ │ │ ├── DtxStartHandler.java │ │ │ │ │ │ ├── ExchangeBoundHandler.java │ │ │ │ │ │ ├── ExchangeDeclareHandler.java │ │ │ │ │ │ ├── ExchangeDeleteHandler.java │ │ │ │ │ │ ├── OnCurrentThreadExecutor.java │ │ │ │ │ │ ├── QueueBindHandler.java │ │ │ │ │ │ ├── QueueDeclareHandler.java │ │ │ │ │ │ ├── QueueDeleteHandler.java │ │ │ │ │ │ ├── QueuePurgeHandler.java │ │ │ │ │ │ ├── QueueUnbindHandler.java │ │ │ │ │ │ ├── ServerMethodDispatcherImpl.java │ │ │ │ │ │ ├── ServerMethodDispatcherImpl_0_9.java │ │ │ │ │ │ ├── ServerMethodDispatcherImpl_0_91.java │ │ │ │ │ │ ├── ServerMethodDispatcherImpl_8_0.java │ │ │ │ │ │ ├── TxCommitHandler.java │ │ │ │ │ │ ├── TxRollbackHandler.java │ │ │ │ │ │ ├── TxSelectHandler.java │ │ │ │ │ │ └── UnexpectedMethodException.java │ │ │ │ │ ├── information │ │ │ │ │ │ └── management │ │ │ │ │ │ │ ├── DurableTopicSubscriptionInformationMBean.java │ │ │ │ │ │ │ ├── MessageStatusInformationMBean.java │ │ │ │ │ │ │ ├── QueueManagementInformationMBean.java │ │ │ │ │ │ │ ├── ServerInformationMBean.java │ │ │ │ │ │ │ └── SubscriptionManagementInformationMBean.java │ │ │ │ │ ├── logging │ │ │ │ │ │ ├── AbstractRootMessageLogger.java │ │ │ │ │ │ ├── CompositeStartupMessageLogger.java │ │ │ │ │ │ ├── Log4jMessageLogger.java │ │ │ │ │ │ ├── LogActor.java │ │ │ │ │ │ ├── LogMessage.java │ │ │ │ │ │ ├── LogSubject.java │ │ │ │ │ │ ├── NullRootMessageLogger.java │ │ │ │ │ │ ├── RootMessageLogger.java │ │ │ │ │ │ ├── SystemOutMessageLogger.java │ │ │ │ │ │ ├── actors │ │ │ │ │ │ │ ├── AMQPChannelActor.java │ │ │ │ │ │ │ ├── AMQPConnectionActor.java │ │ │ │ │ │ │ ├── AbstractActor.java │ │ │ │ │ │ │ ├── BrokerActor.java │ │ │ │ │ │ │ ├── CurrentActor.java │ │ │ │ │ │ │ ├── GenericActor.java │ │ │ │ │ │ │ ├── ManagementActor.java │ │ │ │ │ │ │ ├── QueueActor.java │ │ │ │ │ │ │ └── SubscriptionActor.java │ │ │ │ │ │ ├── management │ │ │ │ │ │ │ └── LoggingManagementMBean.java │ │ │ │ │ │ ├── messages │ │ │ │ │ │ │ ├── Binding_logmessages.properties │ │ │ │ │ │ │ ├── Broker_logmessages.properties │ │ │ │ │ │ │ ├── Channel_logmessages.properties │ │ │ │ │ │ │ ├── ConfigStore_logmessages.properties │ │ │ │ │ │ │ ├── Connection_logmessages.properties │ │ │ │ │ │ │ ├── Exchange_logmessages.properties │ │ │ │ │ │ │ ├── ManagementConsole_logmessages.properties │ │ │ │ │ │ │ ├── MessageStore_logmessages.properties │ │ │ │ │ │ │ ├── Queue_logmessages.properties │ │ │ │ │ │ │ ├── Subscription_logmessages.properties │ │ │ │ │ │ │ ├── TransactionLog_logmessages.properties │ │ │ │ │ │ │ └── VirtualHost_logmessages.properties │ │ │ │ │ │ └── subjects │ │ │ │ │ │ │ ├── AbstractLogSubject.java │ │ │ │ │ │ │ ├── BindingLogSubject.java │ │ │ │ │ │ │ ├── ChannelLogSubject.java │ │ │ │ │ │ │ ├── ConnectionLogSubject.java │ │ │ │ │ │ │ ├── ExchangeLogSubject.java │ │ │ │ │ │ │ ├── LogSubjectFormat.java │ │ │ │ │ │ │ ├── MessageStoreLogSubject.java │ │ │ │ │ │ │ ├── QueueLogSubject.java │ │ │ │ │ │ │ └── SubscriptionLogSubject.java │ │ │ │ │ ├── management │ │ │ │ │ │ ├── AMQManagedObject.java │ │ │ │ │ │ ├── DefaultManagedObject.java │ │ │ │ │ │ ├── JMXManagedObjectRegistry.java │ │ │ │ │ │ ├── MBeanIntrospector.java │ │ │ │ │ │ ├── MBeanInvocationHandlerImpl.java │ │ │ │ │ │ ├── Managable.java │ │ │ │ │ │ ├── ManagedObject.java │ │ │ │ │ │ ├── ManagedObjectRegistry.java │ │ │ │ │ │ └── NoopManagedObjectRegistry.java │ │ │ │ │ ├── message │ │ │ │ │ │ ├── AMQMessage.java │ │ │ │ │ │ ├── AMQMessageHeader.java │ │ │ │ │ │ ├── AMQMessageReference.java │ │ │ │ │ │ ├── ContentHeaderBodyAdapter.java │ │ │ │ │ │ ├── CustomMessagePublishInfo.java │ │ │ │ │ │ ├── EnqueableMessage.java │ │ │ │ │ │ ├── InboundMessage.java │ │ │ │ │ │ ├── MessageContentSource.java │ │ │ │ │ │ ├── MessageMetaData.java │ │ │ │ │ │ ├── MessageMetaData_0_10.java │ │ │ │ │ │ ├── MessageReference.java │ │ │ │ │ │ ├── MessageTransferHeader.java │ │ │ │ │ │ ├── MessageTransferMessage.java │ │ │ │ │ │ ├── ServerMessage.java │ │ │ │ │ │ └── TransferMessageReference.java │ │ │ │ │ ├── output │ │ │ │ │ │ ├── HeaderPropertiesConverter.java │ │ │ │ │ │ ├── ProtocolOutputConverter.java │ │ │ │ │ │ ├── ProtocolOutputConverterRegistry.java │ │ │ │ │ │ ├── amqp0_8 │ │ │ │ │ │ │ └── ProtocolOutputConverterImpl.java │ │ │ │ │ │ ├── amqp0_9 │ │ │ │ │ │ │ └── ProtocolOutputConverterImpl.java │ │ │ │ │ │ └── amqp0_9_1 │ │ │ │ │ │ │ └── ProtocolOutputConverterImpl.java │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── Activator.java │ │ │ │ │ │ ├── Plugin.java │ │ │ │ │ │ ├── PluginFactory.java │ │ │ │ │ │ └── PluginManager.java │ │ │ │ │ ├── protocol │ │ │ │ │ │ ├── AMQConnectionModel.java │ │ │ │ │ │ ├── AMQNoMethodHandlerException.java │ │ │ │ │ │ ├── AMQProtocolEngine.java │ │ │ │ │ │ ├── AMQProtocolEngineFactory.java │ │ │ │ │ │ ├── AMQProtocolSession.java │ │ │ │ │ │ ├── AMQProtocolSessionMBean.java │ │ │ │ │ │ ├── AMQSessionModel.java │ │ │ │ │ │ ├── AmqpProtocolVersion.java │ │ │ │ │ │ ├── MultiVersionProtocolEngine.java │ │ │ │ │ │ ├── MultiVersionProtocolEngineFactory.java │ │ │ │ │ │ └── ProtocolEngine_0_10.java │ │ │ │ │ ├── queue │ │ │ │ │ │ ├── AMQPriorityQueue.java │ │ │ │ │ │ ├── AMQQueue.java │ │ │ │ │ │ ├── AMQQueueFactory.java │ │ │ │ │ │ ├── AMQQueueMBean.java │ │ │ │ │ │ ├── BaseQueue.java │ │ │ │ │ │ ├── ConflationQueue.java │ │ │ │ │ │ ├── ConflationQueueList.java │ │ │ │ │ │ ├── DLCQueueUtils.java │ │ │ │ │ │ ├── DefaultQueueRegistry.java │ │ │ │ │ │ ├── FailedDequeueException.java │ │ │ │ │ │ ├── Filterable.java │ │ │ │ │ │ ├── InboundMessageAdapter.java │ │ │ │ │ │ ├── IncomingMessage.java │ │ │ │ │ │ ├── MessageCleanupException.java │ │ │ │ │ │ ├── NotificationCheck.java │ │ │ │ │ │ ├── PriorityQueueList.java │ │ │ │ │ │ ├── QueueContext.java │ │ │ │ │ │ ├── QueueEntry.java │ │ │ │ │ │ ├── QueueEntryImpl.java │ │ │ │ │ │ ├── QueueEntryIterator.java │ │ │ │ │ │ ├── QueueEntryList.java │ │ │ │ │ │ ├── QueueEntryListFactory.java │ │ │ │ │ │ ├── QueueNotificationListener.java │ │ │ │ │ │ ├── QueueRegistry.java │ │ │ │ │ │ ├── QueueRunner.java │ │ │ │ │ │ ├── SimpleAMQQueue.java │ │ │ │ │ │ ├── SimpleQueueEntryList.java │ │ │ │ │ │ └── SubFlushRunner.java │ │ │ │ │ ├── registry │ │ │ │ │ │ ├── ApplicationRegistry.java │ │ │ │ │ │ ├── BrokerConfigAdapter.java │ │ │ │ │ │ ├── ConfigurationFileApplicationRegistry.java │ │ │ │ │ │ └── IApplicationRegistry.java │ │ │ │ │ ├── security │ │ │ │ │ │ ├── AbstractPlugin.java │ │ │ │ │ │ ├── AbstractProxyPlugin.java │ │ │ │ │ │ ├── AuthorizationHolder.java │ │ │ │ │ │ ├── Result.java │ │ │ │ │ │ ├── SecurityManager.java │ │ │ │ │ │ ├── SecurityPlugin.java │ │ │ │ │ │ ├── SecurityPluginActivator.java │ │ │ │ │ │ ├── SecurityPluginFactory.java │ │ │ │ │ │ ├── access │ │ │ │ │ │ │ ├── ObjectProperties.java │ │ │ │ │ │ │ ├── ObjectType.java │ │ │ │ │ │ │ ├── Operation.java │ │ │ │ │ │ │ ├── Permission.java │ │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ │ ├── AllowAll.java │ │ │ │ │ │ │ │ ├── BasicPlugin.java │ │ │ │ │ │ │ │ ├── DenyAll.java │ │ │ │ │ │ │ │ └── LegacyAccess.java │ │ │ │ │ │ └── auth │ │ │ │ │ │ │ ├── AuthenticationResult.java │ │ │ │ │ │ │ ├── database │ │ │ │ │ │ │ ├── Base64MD5PasswordFilePrincipalDatabase.java │ │ │ │ │ │ │ ├── HashedUser.java │ │ │ │ │ │ │ ├── PlainPasswordFilePrincipalDatabase.java │ │ │ │ │ │ │ ├── PlainUser.java │ │ │ │ │ │ │ ├── PrincipalDatabase.java │ │ │ │ │ │ │ └── PropertiesPrincipalDatabase.java │ │ │ │ │ │ │ ├── management │ │ │ │ │ │ │ └── AMQUserManagementMBean.java │ │ │ │ │ │ │ ├── manager │ │ │ │ │ │ │ ├── AuthenticationManager.java │ │ │ │ │ │ │ ├── AuthenticationManagerPluginFactory.java │ │ │ │ │ │ │ └── PrincipalDatabaseAuthenticationManager.java │ │ │ │ │ │ │ ├── rmi │ │ │ │ │ │ │ └── RMIPasswordAuthenticator.java │ │ │ │ │ │ │ └── sasl │ │ │ │ │ │ │ ├── AuthenticationProviderInitialiser.java │ │ │ │ │ │ │ ├── GroupPrincipal.java │ │ │ │ │ │ │ ├── JCAProvider.java │ │ │ │ │ │ │ ├── UsernamePasswordInitialiser.java │ │ │ │ │ │ │ ├── UsernamePrincipal.java │ │ │ │ │ │ │ ├── amqplain │ │ │ │ │ │ │ ├── AmqPlainInitialiser.java │ │ │ │ │ │ │ ├── AmqPlainSaslServer.java │ │ │ │ │ │ │ └── AmqPlainSaslServerFactory.java │ │ │ │ │ │ │ ├── anonymous │ │ │ │ │ │ │ ├── AnonymousInitialiser.java │ │ │ │ │ │ │ ├── AnonymousSaslServer.java │ │ │ │ │ │ │ └── AnonymousSaslServerFactory.java │ │ │ │ │ │ │ ├── crammd5 │ │ │ │ │ │ │ ├── CRAMMD5HashedInitialiser.java │ │ │ │ │ │ │ ├── CRAMMD5HashedSaslServer.java │ │ │ │ │ │ │ ├── CRAMMD5HashedServerFactory.java │ │ │ │ │ │ │ ├── CRAMMD5HexInitialiser.java │ │ │ │ │ │ │ ├── CRAMMD5HexSaslServer.java │ │ │ │ │ │ │ ├── CRAMMD5HexServerFactory.java │ │ │ │ │ │ │ └── CRAMMD5Initialiser.java │ │ │ │ │ │ │ └── plain │ │ │ │ │ │ │ ├── PlainInitialiser.java │ │ │ │ │ │ │ ├── PlainPasswordCallback.java │ │ │ │ │ │ │ ├── PlainSaslServer.java │ │ │ │ │ │ │ └── PlainSaslServerFactory.java │ │ │ │ │ ├── state │ │ │ │ │ │ ├── AMQState.java │ │ │ │ │ │ ├── AMQStateManager.java │ │ │ │ │ │ ├── IllegalStateTransitionException.java │ │ │ │ │ │ ├── StateAwareMethodListener.java │ │ │ │ │ │ └── StateListener.java │ │ │ │ │ ├── stats │ │ │ │ │ │ ├── StatisticsCounter.java │ │ │ │ │ │ └── StatisticsGatherer.java │ │ │ │ │ ├── store │ │ │ │ │ │ ├── AbstractMessageStore.java │ │ │ │ │ │ ├── ConfigurationRecoveryHandler.java │ │ │ │ │ │ ├── DurableConfigurationStore.java │ │ │ │ │ │ ├── ExchangeManager.java │ │ │ │ │ │ ├── ForwardingStoredMessage.java │ │ │ │ │ │ ├── MemoryMessageStore.java │ │ │ │ │ │ ├── MessageMetaDataType.java │ │ │ │ │ │ ├── MessageStore.java │ │ │ │ │ │ ├── MessageStoreClosedException.java │ │ │ │ │ │ ├── MessageStoreRecoveryHandler.java │ │ │ │ │ │ ├── QpidDeprecatedMessageStore.java │ │ │ │ │ │ ├── QueueManager.java │ │ │ │ │ │ ├── StorableMessageMetaData.java │ │ │ │ │ │ ├── StoreContext.java │ │ │ │ │ │ ├── StoredMemoryMessage.java │ │ │ │ │ │ ├── StoredMessage.java │ │ │ │ │ │ ├── TransactionLog.java │ │ │ │ │ │ ├── TransactionLogRecoveryHandler.java │ │ │ │ │ │ └── TransactionLogResource.java │ │ │ │ │ ├── subscription │ │ │ │ │ │ ├── ClientDeliveryMethod.java │ │ │ │ │ │ ├── ExplicitAcceptDispositionChangeListener.java │ │ │ │ │ │ ├── ImplicitAcceptDispositionChangeListener.java │ │ │ │ │ │ ├── MessageAcceptCompletionListener.java │ │ │ │ │ │ ├── RecordDeliveryMethod.java │ │ │ │ │ │ ├── Subscription.java │ │ │ │ │ │ ├── SubscriptionFactory.java │ │ │ │ │ │ ├── SubscriptionFactoryImpl.java │ │ │ │ │ │ ├── SubscriptionImpl.java │ │ │ │ │ │ ├── SubscriptionList.java │ │ │ │ │ │ └── Subscription_0_10.java │ │ │ │ │ ├── transport │ │ │ │ │ │ ├── QpidAcceptor.java │ │ │ │ │ │ ├── ServerConnection.java │ │ │ │ │ │ ├── ServerConnectionDelegate.java │ │ │ │ │ │ ├── ServerSession.java │ │ │ │ │ │ └── ServerSessionDelegate.java │ │ │ │ │ ├── txn │ │ │ │ │ │ ├── AutoCommitTransaction.java │ │ │ │ │ │ ├── DtxException.java │ │ │ │ │ │ ├── DtxNotSelectedException.java │ │ │ │ │ │ ├── IncorrectDtxStateException.java │ │ │ │ │ │ ├── LocalTransaction.java │ │ │ │ │ │ ├── QpidDistributedTransaction.java │ │ │ │ │ │ ├── RollbackOnlyDtxException.java │ │ │ │ │ │ ├── ServerTransaction.java │ │ │ │ │ │ └── TimeoutDtxException.java │ │ │ │ │ ├── util │ │ │ │ │ │ ├── CircularBuffer.java │ │ │ │ │ │ └── QueueMessageRemovalLock.java │ │ │ │ │ └── virtualhost │ │ │ │ │ │ ├── AMQChannelMBean.java │ │ │ │ │ │ ├── HouseKeepingTask.java │ │ │ │ │ │ ├── ManagedVirtualHost.java │ │ │ │ │ │ ├── VirtualHost.java │ │ │ │ │ │ ├── VirtualHostConfigRecoveryHandler.java │ │ │ │ │ │ ├── VirtualHostConfigSynchronizer.java │ │ │ │ │ │ ├── VirtualHostImpl.java │ │ │ │ │ │ ├── VirtualHostRegistry.java │ │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── ConfiguredQueueBindingListener.java │ │ │ │ │ │ ├── SlowConsumerDetection.java │ │ │ │ │ │ ├── VirtualHostHouseKeepingPlugin.java │ │ │ │ │ │ ├── VirtualHostPlugin.java │ │ │ │ │ │ ├── VirtualHostPluginFactory.java │ │ │ │ │ │ ├── logging │ │ │ │ │ │ ├── SlowConsumerDetection_logmessages.properties │ │ │ │ │ │ └── TopicDeletePolicy_logmessages.properties │ │ │ │ │ │ └── policies │ │ │ │ │ │ ├── TopicDeletePolicy.java │ │ │ │ │ │ └── TopicDeletePolicyConfiguration.java │ │ │ │ │ ├── store │ │ │ │ │ ├── AndesBatchUpdateException.java │ │ │ │ │ ├── AndesDataException.java │ │ │ │ │ ├── AndesDataIntegrityViolationException.java │ │ │ │ │ ├── AndesStoreUnavailableException.java │ │ │ │ │ ├── AndesTransactionRollbackException.java │ │ │ │ │ ├── FailureObservingAndesContextStore.java │ │ │ │ │ ├── FailureObservingDtxStore.java │ │ │ │ │ ├── FailureObservingMessageStore.java │ │ │ │ │ ├── FailureObservingStore.java │ │ │ │ │ ├── FailureObservingStoreManager.java │ │ │ │ │ ├── HealthAwareStore.java │ │ │ │ │ ├── StoreHealthCheckTask.java │ │ │ │ │ ├── StoreHealthListener.java │ │ │ │ │ ├── StoredAMQPMessage.java │ │ │ │ │ ├── cache │ │ │ │ │ │ ├── AndesMessageCache.java │ │ │ │ │ │ ├── DisabledMessageCacheImpl.java │ │ │ │ │ │ ├── GuavaBasedMessageCacheImpl.java │ │ │ │ │ │ └── MessageCacheFactory.java │ │ │ │ │ └── rdbms │ │ │ │ │ │ ├── RDBMSAndesContextStoreImpl.java │ │ │ │ │ │ ├── RDBMSConnection.java │ │ │ │ │ │ ├── RDBMSConstants.java │ │ │ │ │ │ ├── RDBMSDtxStoreImpl.java │ │ │ │ │ │ ├── RDBMSMessageStoreImpl.java │ │ │ │ │ │ └── RDBMSStoreUtils.java │ │ │ │ │ ├── task │ │ │ │ │ ├── Task.java │ │ │ │ │ ├── TaskExceptionHandler.java │ │ │ │ │ ├── TaskExecutorService.java │ │ │ │ │ ├── TaskHolder.java │ │ │ │ │ └── TaskProcessor.java │ │ │ │ │ ├── thrift │ │ │ │ │ ├── MBThriftClient.java │ │ │ │ │ ├── MBThriftServer.java │ │ │ │ │ ├── SlotManagementServiceImpl.java │ │ │ │ │ ├── ThriftClientFactory.java │ │ │ │ │ ├── exception │ │ │ │ │ │ └── ThriftClientException.java │ │ │ │ │ └── slot │ │ │ │ │ │ └── gen │ │ │ │ │ │ ├── SlotInfo.java │ │ │ │ │ │ └── SlotManagementService.java │ │ │ │ │ └── tools │ │ │ │ │ ├── messagestore │ │ │ │ │ ├── MessageStoreTool.java │ │ │ │ │ └── commands │ │ │ │ │ │ ├── AbstractCommand.java │ │ │ │ │ │ ├── Clear.java │ │ │ │ │ │ ├── Command.java │ │ │ │ │ │ ├── Copy.java │ │ │ │ │ │ ├── Dump.java │ │ │ │ │ │ ├── Help.java │ │ │ │ │ │ ├── List.java │ │ │ │ │ │ ├── Load.java │ │ │ │ │ │ ├── Move.java │ │ │ │ │ │ ├── Purge.java │ │ │ │ │ │ ├── Quit.java │ │ │ │ │ │ ├── Select.java │ │ │ │ │ │ └── Show.java │ │ │ │ │ ├── security │ │ │ │ │ └── Passwd.java │ │ │ │ │ └── utils │ │ │ │ │ ├── CommandParser.java │ │ │ │ │ ├── Console.java │ │ │ │ │ ├── DataCollector.java │ │ │ │ │ ├── MessageTracer.java │ │ │ │ │ ├── SimpleCommandParser.java │ │ │ │ │ └── SimpleConsole.java │ │ │ └── resources │ │ │ │ └── slot.thrift │ │ │ ├── test │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── andes │ │ │ │ ├── kernel │ │ │ │ └── disruptor │ │ │ │ │ └── inbound │ │ │ │ │ └── ContentChunkHandlerTest.java │ │ │ │ ├── server │ │ │ │ ├── AMQBrokerManagerMBeanTest.java │ │ │ │ ├── BrokerOptionsTest.java │ │ │ │ ├── ExtractResendAndRequeueTest.java │ │ │ │ ├── MainTest.java │ │ │ │ ├── SelectorParserTest.java │ │ │ │ ├── ack │ │ │ │ │ └── AcknowledgeTest.java │ │ │ │ ├── configuration │ │ │ │ │ ├── QueueConfigurationTest.java │ │ │ │ │ ├── ServerConfigurationTest.java │ │ │ │ │ ├── TopicConfigurationTest.java │ │ │ │ │ ├── VirtualHostConfigurationTest.java │ │ │ │ │ └── plugins │ │ │ │ │ │ └── ConfigurationPluginTest.java │ │ │ │ ├── exchange │ │ │ │ │ ├── AbstractHeadersExchangeTestBase.java │ │ │ │ │ ├── ExchangeMBeanTest.java │ │ │ │ │ ├── HeadersBindingTest.java │ │ │ │ │ ├── HeadersExchangeTest.java │ │ │ │ │ └── TopicExchangeTest.java │ │ │ │ ├── logging │ │ │ │ │ ├── Log4jMessageLoggerTest.java │ │ │ │ │ ├── LogMessageTest.java │ │ │ │ │ ├── UnitTestMessageLogger.java │ │ │ │ │ ├── UnitTestMessageLoggerTest.java │ │ │ │ │ ├── actors │ │ │ │ │ │ ├── AMQPChannelActorTest.java │ │ │ │ │ │ ├── AMQPConnectionActorTest.java │ │ │ │ │ │ ├── BaseActorTestCase.java │ │ │ │ │ │ ├── BaseConnectionActorTestCase.java │ │ │ │ │ │ ├── CurrentActorTest.java │ │ │ │ │ │ ├── ManagementActorTest.java │ │ │ │ │ │ ├── QueueActorTest.java │ │ │ │ │ │ ├── SubscriptionActorTest.java │ │ │ │ │ │ └── TestLogActor.java │ │ │ │ │ ├── management │ │ │ │ │ │ └── LoggingManagementMBeanTest.java │ │ │ │ │ ├── messages │ │ │ │ │ │ ├── AbstractTestMessages.java │ │ │ │ │ │ ├── BindingMessagesTest.java │ │ │ │ │ │ ├── BrokerMessagesTest.java │ │ │ │ │ │ ├── ChannelMessagesTest.java │ │ │ │ │ │ ├── ConnectionMessagesTest.java │ │ │ │ │ │ ├── ExchangeMessagesTest.java │ │ │ │ │ │ ├── ManagementConsoleMessagesTest.java │ │ │ │ │ │ ├── MessageStoreMessagesTest.java │ │ │ │ │ │ ├── QueueMessagesTest.java │ │ │ │ │ │ ├── SubscriptionMessagesTest.java │ │ │ │ │ │ └── VirtualHostMessagesTest.java │ │ │ │ │ └── subjects │ │ │ │ │ │ ├── AbstractTestLogSubject.java │ │ │ │ │ │ ├── BindingLogSubjectTest.java │ │ │ │ │ │ ├── ChannelLogSubjectTest.java │ │ │ │ │ │ ├── ConnectionLogSubjectTest.java │ │ │ │ │ │ ├── ExchangeLogSubjectTest.java │ │ │ │ │ │ ├── MessageStoreLogSubjectTest.java │ │ │ │ │ │ ├── QueueLogSubjectTest.java │ │ │ │ │ │ ├── SubscriptionLogSubjectTest.java │ │ │ │ │ │ └── TestBlankSubject.java │ │ │ │ ├── management │ │ │ │ │ └── AMQUserManagementMBeanTest.java │ │ │ │ ├── plugins │ │ │ │ │ ├── MockPluginManager.java │ │ │ │ │ └── PluginTest.java │ │ │ │ ├── protocol │ │ │ │ │ ├── AMQProtocolSessionMBeanTest.java │ │ │ │ │ ├── InternalTestProtocolSession.java │ │ │ │ │ └── MaxChannelsTest.java │ │ │ │ ├── queue │ │ │ │ │ ├── AMQPriorityQueueTest.java │ │ │ │ │ ├── AMQQueueAlertTest.java │ │ │ │ │ ├── AMQQueueFactoryTest.java │ │ │ │ │ ├── AMQQueueMBeanTest.java │ │ │ │ │ ├── AckTest.java │ │ │ │ │ ├── MockAMQMessage.java │ │ │ │ │ ├── MockAMQQueue.java │ │ │ │ │ ├── MockMessagePublishInfo.java │ │ │ │ │ ├── MockQueueEntry.java │ │ │ │ │ ├── MockStoredMessage.java │ │ │ │ │ ├── QueueEntryImplTest.java │ │ │ │ │ ├── QueueEntryTest.java │ │ │ │ │ ├── SimpleAMQQueueTest.java │ │ │ │ │ ├── SimpleAMQQueueThreadPoolTest.java │ │ │ │ │ └── SimpleQueueEntryListTest.java │ │ │ │ ├── registry │ │ │ │ │ └── ApplicationRegistryShutdownTest.java │ │ │ │ ├── security │ │ │ │ │ └── auth │ │ │ │ │ │ ├── database │ │ │ │ │ │ ├── Base64MD5PasswordFilePrincipalDatabaseTest.java │ │ │ │ │ │ ├── HashedUserTest.java │ │ │ │ │ │ ├── PlainPasswordFilePrincipalDatabaseTest.java │ │ │ │ │ │ └── PlainUserTest.java │ │ │ │ │ │ ├── manager │ │ │ │ │ │ └── PrincipalDatabaseAuthenticationManagerTest.java │ │ │ │ │ │ ├── rmi │ │ │ │ │ │ └── RMIPasswordAuthenticatorTest.java │ │ │ │ │ │ └── sasl │ │ │ │ │ │ ├── CRAMMD5HexInitialiserTest.java │ │ │ │ │ │ ├── CRAMMD5HexServerTest.java │ │ │ │ │ │ ├── GroupPrincipalTest.java │ │ │ │ │ │ ├── SaslServerTestCase.java │ │ │ │ │ │ ├── TestPrincipalDatabase.java │ │ │ │ │ │ ├── TestPrincipalUtils.java │ │ │ │ │ │ ├── UsernamePrincipalTest.java │ │ │ │ │ │ ├── amqplain │ │ │ │ │ │ └── AMQPlainSaslServerTest.java │ │ │ │ │ │ └── plain │ │ │ │ │ │ └── PlainSaslServerTest.java │ │ │ │ ├── smoke │ │ │ │ │ ├── AbstractJMSClient.java │ │ │ │ │ ├── AbstractJMSTopicClient.java │ │ │ │ │ ├── CreateRemoveQueueSubscriptionTest.java │ │ │ │ │ ├── CreateRemoveTopicSubscriptionTest.java │ │ │ │ │ ├── MultiThreadedDurableTopicTest.java │ │ │ │ │ ├── MultiThreadedLargeMessageTopicTest.java │ │ │ │ │ ├── MultiThreadedTest.java │ │ │ │ │ ├── MultiThreadedTopicTest.java │ │ │ │ │ ├── MultithreadedDuplicationAndLossTest.java │ │ │ │ │ └── MultithreadedLargeMessageQueueTest.java │ │ │ │ ├── stats │ │ │ │ │ └── StatisticsCounterTest.java │ │ │ │ ├── store │ │ │ │ │ ├── MessageStoreShutdownTest.java │ │ │ │ │ ├── MessageStoreTest.java │ │ │ │ │ ├── ReferenceCountingTest.java │ │ │ │ │ ├── SkeletonMessageStore.java │ │ │ │ │ ├── TestMemoryMessageStore.java │ │ │ │ │ └── TestableMemoryMessageStore.java │ │ │ │ ├── subscription │ │ │ │ │ ├── MockSubscription.java │ │ │ │ │ └── QueueBrowserUsesNoAckTest.java │ │ │ │ ├── txn │ │ │ │ │ ├── AutoCommitTransactionTest.java │ │ │ │ │ ├── LocalTransactionTest.java │ │ │ │ │ ├── MockAction.java │ │ │ │ │ ├── MockServerMessage.java │ │ │ │ │ └── MockStoreTransaction.java │ │ │ │ ├── util │ │ │ │ │ ├── InternalBrokerBaseCase.java │ │ │ │ │ └── TestApplicationRegistry.java │ │ │ │ └── virtualhost │ │ │ │ │ ├── HouseKeepingTaskTest.java │ │ │ │ │ ├── MockVirtualHost.java │ │ │ │ │ └── plugins │ │ │ │ │ ├── SlowConsumerDetectionConfigurationTest.java │ │ │ │ │ ├── SlowConsumerDetectionPolicyConfigurationTest.java │ │ │ │ │ ├── SlowConsumerDetectionQueueConfigurationTest.java │ │ │ │ │ └── policies │ │ │ │ │ ├── TopicDeletePolicyConfigurationTest.java │ │ │ │ │ └── TopicDeletePolicyTest.java │ │ │ │ └── util │ │ │ │ └── MockChannel.java │ │ │ ├── velocity │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── andes │ │ │ │ │ └── server │ │ │ │ │ └── logging │ │ │ │ │ └── GenerateLogMessages.java │ │ │ └── templates │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── andes │ │ │ │ └── server │ │ │ │ └── logging │ │ │ │ └── messages │ │ │ │ └── LogMessages.vm │ │ │ └── xsl │ │ │ └── qmf.xsl │ ├── build.deps │ ├── build.xml │ ├── client │ │ ├── README.txt │ │ ├── build.xml │ │ ├── example │ │ │ ├── build.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ ├── README.txt │ │ │ │ ├── org │ │ │ │ └── wso2 │ │ │ │ │ └── andes │ │ │ │ │ └── example │ │ │ │ │ ├── Drain.java │ │ │ │ │ ├── Hello.java │ │ │ │ │ ├── MapReceiver.java │ │ │ │ │ ├── MapSender.java │ │ │ │ │ ├── OptionParser.java │ │ │ │ │ ├── Spout.java │ │ │ │ │ ├── hello.properties │ │ │ │ │ ├── publisher │ │ │ │ │ ├── FileMessageDispatcher.java │ │ │ │ │ ├── FileMessageFactory.java │ │ │ │ │ ├── MessageFactoryException.java │ │ │ │ │ ├── MonitorMessageDispatcher.java │ │ │ │ │ ├── MonitorPublisher.java │ │ │ │ │ ├── MultiMessageDispatcher.java │ │ │ │ │ ├── Publisher.java │ │ │ │ │ ├── TopicPublisher.java │ │ │ │ │ └── UndeliveredMessageException.java │ │ │ │ │ ├── pubsub │ │ │ │ │ ├── Client.java │ │ │ │ │ ├── ConnectionSetup.java │ │ │ │ │ ├── Publisher.java │ │ │ │ │ └── Subscriber.java │ │ │ │ │ ├── shared │ │ │ │ │ ├── ConnectionException.java │ │ │ │ │ ├── ContextException.java │ │ │ │ │ ├── FileUtils.java │ │ │ │ │ ├── InitialContextHelper.java │ │ │ │ │ ├── Statics.java │ │ │ │ │ └── example.properties │ │ │ │ │ ├── simple │ │ │ │ │ └── reqresp │ │ │ │ │ │ ├── Client.java │ │ │ │ │ │ └── Server.java │ │ │ │ │ └── subscriber │ │ │ │ │ ├── MonitoredSubscriber.java │ │ │ │ │ ├── MonitoredSubscriptionWrapper.java │ │ │ │ │ ├── Subscriber.java │ │ │ │ │ └── SubscriptionWrapper.java │ │ │ │ └── runSample.sh │ │ ├── src │ │ │ ├── main │ │ │ │ ├── grammar │ │ │ │ │ └── SelectorParser.jj │ │ │ │ └── java │ │ │ │ │ ├── client.bnd │ │ │ │ │ ├── client.log4j │ │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── andes │ │ │ │ │ ├── XaJmsSession.java │ │ │ │ │ ├── client │ │ │ │ │ ├── AMQAnyDestination.java │ │ │ │ │ ├── AMQAuthenticationException.java │ │ │ │ │ ├── AMQBrokerDetails.java │ │ │ │ │ ├── AMQConnection.java │ │ │ │ │ ├── AMQConnectionDelegate.java │ │ │ │ │ ├── AMQConnectionDelegate_0_10.java │ │ │ │ │ ├── AMQConnectionDelegate_0_9.java │ │ │ │ │ ├── AMQConnectionDelegate_8_0.java │ │ │ │ │ ├── AMQConnectionDelegate_9_1.java │ │ │ │ │ ├── AMQConnectionFactory.java │ │ │ │ │ ├── AMQConnectionURL.java │ │ │ │ │ ├── AMQDestination.java │ │ │ │ │ ├── AMQHeadersExchange.java │ │ │ │ │ ├── AMQNoConsumersException.java │ │ │ │ │ ├── AMQNoRouteException.java │ │ │ │ │ ├── AMQQueue.java │ │ │ │ │ ├── AMQQueueBrowser.java │ │ │ │ │ ├── AMQQueueSessionAdaptor.java │ │ │ │ │ ├── AMQSession.java │ │ │ │ │ ├── AMQSessionAdapter.java │ │ │ │ │ ├── AMQSessionDirtyException.java │ │ │ │ │ ├── AMQSession_0_10.java │ │ │ │ │ ├── AMQSession_0_8.java │ │ │ │ │ ├── AMQTemporaryQueue.java │ │ │ │ │ ├── AMQTemporaryTopic.java │ │ │ │ │ ├── AMQTopic.java │ │ │ │ │ ├── AMQTopicSessionAdaptor.java │ │ │ │ │ ├── AMQUndefinedDestination.java │ │ │ │ │ ├── AMQXAConnectionFactory.java │ │ │ │ │ ├── BasicMessageConsumer.java │ │ │ │ │ ├── BasicMessageConsumer_0_10.java │ │ │ │ │ ├── BasicMessageConsumer_0_8.java │ │ │ │ │ ├── BasicMessageProducer.java │ │ │ │ │ ├── BasicMessageProducer_0_10.java │ │ │ │ │ ├── BasicMessageProducer_0_8.java │ │ │ │ │ ├── ChannelToSessionMap.java │ │ │ │ │ ├── Closeable.java │ │ │ │ │ ├── ConnectionTuneParameters.java │ │ │ │ │ ├── CustomJMSXProperty.java │ │ │ │ │ ├── DelayedObject.java │ │ │ │ │ ├── DispatcherCallback.java │ │ │ │ │ ├── JMSAMQException.java │ │ │ │ │ ├── JmsNotImplementedException.java │ │ │ │ │ ├── MessageConsumerPair.java │ │ │ │ │ ├── QpidConnectionMetaData.java │ │ │ │ │ ├── QueueReceiverAdaptor.java │ │ │ │ │ ├── QueueSenderAdapter.java │ │ │ │ │ ├── SSLConfiguration.java │ │ │ │ │ ├── TemporaryDestination.java │ │ │ │ │ ├── TopicPublisherAdapter.java │ │ │ │ │ ├── TopicSubscriberAdaptor.java │ │ │ │ │ ├── XAConnectionImpl.java │ │ │ │ │ ├── XAResource_0_10.java │ │ │ │ │ ├── XAResource_0_9_1.java │ │ │ │ │ ├── XASession_0_10.java │ │ │ │ │ ├── XASession_9_1.java │ │ │ │ │ ├── failover │ │ │ │ │ │ ├── FailoverException.java │ │ │ │ │ │ ├── FailoverHandler.java │ │ │ │ │ │ ├── FailoverNoopSupport.java │ │ │ │ │ │ ├── FailoverProtectedOperation.java │ │ │ │ │ │ ├── FailoverRetrySupport.java │ │ │ │ │ │ ├── FailoverState.java │ │ │ │ │ │ └── FailoverSupport.java │ │ │ │ │ ├── handler │ │ │ │ │ │ ├── AccessRequestOkMethodHandler.java │ │ │ │ │ │ ├── BasicCancelOkMethodHandler.java │ │ │ │ │ │ ├── BasicDeliverMethodHandler.java │ │ │ │ │ │ ├── BasicReturnMethodHandler.java │ │ │ │ │ │ ├── ChannelCloseMethodHandler.java │ │ │ │ │ │ ├── ChannelCloseOkMethodHandler.java │ │ │ │ │ │ ├── ChannelFlowMethodHandler.java │ │ │ │ │ │ ├── ChannelFlowOkMethodHandler.java │ │ │ │ │ │ ├── ClientMethodDispatcherImpl.java │ │ │ │ │ │ ├── ClientMethodDispatcherImpl_0_9.java │ │ │ │ │ │ ├── ClientMethodDispatcherImpl_0_91.java │ │ │ │ │ │ ├── ClientMethodDispatcherImpl_8_0.java │ │ │ │ │ │ ├── ConnectionCloseMethodHandler.java │ │ │ │ │ │ ├── ConnectionOpenOkMethodHandler.java │ │ │ │ │ │ ├── ConnectionRedirectMethodHandler.java │ │ │ │ │ │ ├── ConnectionSecureMethodHandler.java │ │ │ │ │ │ ├── ConnectionStartMethodHandler.java │ │ │ │ │ │ ├── ConnectionTuneMethodHandler.java │ │ │ │ │ │ ├── ExchangeBoundOkMethodHandler.java │ │ │ │ │ │ └── QueueDeleteOkMethodHandler.java │ │ │ │ │ ├── message │ │ │ │ │ │ ├── AMQMessageDelegate.java │ │ │ │ │ │ ├── AMQMessageDelegateFactory.java │ │ │ │ │ │ ├── AMQMessageDelegate_0_10.java │ │ │ │ │ │ ├── AMQMessageDelegate_0_8.java │ │ │ │ │ │ ├── AMQPEncodedMapMessage.java │ │ │ │ │ │ ├── AMQPEncodedMapMessageFactory.java │ │ │ │ │ │ ├── AbstractAMQMessageDelegate.java │ │ │ │ │ │ ├── AbstractBytesMessage.java │ │ │ │ │ │ ├── AbstractBytesTypedMessage.java │ │ │ │ │ │ ├── AbstractJMSMessage.java │ │ │ │ │ │ ├── AbstractJMSMessageFactory.java │ │ │ │ │ │ ├── CloseConsumerMessage.java │ │ │ │ │ │ ├── FieldTableSupport.java │ │ │ │ │ │ ├── JMSBytesMessage.java │ │ │ │ │ │ ├── JMSBytesMessageFactory.java │ │ │ │ │ │ ├── JMSHeaderAdapter.java │ │ │ │ │ │ ├── JMSMapMessage.java │ │ │ │ │ │ ├── JMSMapMessageFactory.java │ │ │ │ │ │ ├── JMSObjectMessage.java │ │ │ │ │ │ ├── JMSObjectMessageFactory.java │ │ │ │ │ │ ├── JMSStreamMessage.java │ │ │ │ │ │ ├── JMSStreamMessageFactory.java │ │ │ │ │ │ ├── JMSTextMessage.java │ │ │ │ │ │ ├── JMSTextMessageFactory.java │ │ │ │ │ │ ├── MessageConverter.java │ │ │ │ │ │ ├── MessageFactory.java │ │ │ │ │ │ ├── MessageFactoryRegistry.java │ │ │ │ │ │ ├── ReturnMessage.java │ │ │ │ │ │ ├── UnprocessedMessage.java │ │ │ │ │ │ ├── UnprocessedMessage_0_10.java │ │ │ │ │ │ └── UnprocessedMessage_0_8.java │ │ │ │ │ ├── messaging │ │ │ │ │ │ └── address │ │ │ │ │ │ │ ├── AddressHelper.java │ │ │ │ │ │ │ ├── Link.java │ │ │ │ │ │ │ ├── Node.java │ │ │ │ │ │ │ ├── QpidExchangeOptions.java │ │ │ │ │ │ │ └── QpidQueueOptions.java │ │ │ │ │ ├── pool │ │ │ │ │ │ ├── NamedThreadFactoryBuilder.java │ │ │ │ │ │ └── ReferenceCountingClientExecutorService.java │ │ │ │ │ ├── protocol │ │ │ │ │ │ ├── AMQProtocolHandler.java │ │ │ │ │ │ ├── AMQProtocolSession.java │ │ │ │ │ │ ├── BlockingMethodFrameListener.java │ │ │ │ │ │ ├── HeartbeatConfig.java │ │ │ │ │ │ ├── HeartbeatDiagnostics.java │ │ │ │ │ │ └── ProtocolBufferMonitorFilter.java │ │ │ │ │ ├── security │ │ │ │ │ │ ├── AMQCallbackHandler.java │ │ │ │ │ │ ├── CallbackHandlerRegistry.java │ │ │ │ │ │ ├── CallbackHandlerRegistry.properties │ │ │ │ │ │ ├── DynamicSaslRegistrar.java │ │ │ │ │ │ ├── DynamicSaslRegistrar.properties │ │ │ │ │ │ ├── JCAProvider.java │ │ │ │ │ │ ├── UsernameHashedPasswordCallbackHandler.java │ │ │ │ │ │ ├── UsernamePasswordCallbackHandler.java │ │ │ │ │ │ ├── amqplain │ │ │ │ │ │ │ ├── AmqPlainSaslClient.java │ │ │ │ │ │ │ └── AmqPlainSaslClientFactory.java │ │ │ │ │ │ ├── anonymous │ │ │ │ │ │ │ ├── AnonymousSaslClient.java │ │ │ │ │ │ │ └── AnonymousSaslClientFactory.java │ │ │ │ │ │ └── crammd5hashed │ │ │ │ │ │ │ └── CRAMMD5HashedSaslClientFactory.java │ │ │ │ │ ├── state │ │ │ │ │ │ ├── AMQMethodNotImplementedException.java │ │ │ │ │ │ ├── AMQState.java │ │ │ │ │ │ ├── AMQStateChangedEvent.java │ │ │ │ │ │ ├── AMQStateListener.java │ │ │ │ │ │ ├── AMQStateManager.java │ │ │ │ │ │ ├── StateAwareMethodListener.java │ │ │ │ │ │ ├── StateWaiter.java │ │ │ │ │ │ └── listener │ │ │ │ │ │ │ └── SpecificMethodFrameListener.java │ │ │ │ │ ├── transport │ │ │ │ │ │ ├── AMQNoTransportForProtocolException.java │ │ │ │ │ │ ├── AMQTransportConnectionException.java │ │ │ │ │ │ └── ITransportConnection.java │ │ │ │ │ ├── url │ │ │ │ │ │ ├── URLParser.java │ │ │ │ │ │ └── URLParser_0_10.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── BlockingWaiter.java │ │ │ │ │ │ ├── ClassLoadingAwareObjectInputStream.java │ │ │ │ │ │ └── FlowControllingBlockingQueue.java │ │ │ │ │ ├── collections │ │ │ │ │ ├── KeyValue.java │ │ │ │ │ ├── ReferenceMap.java │ │ │ │ │ └── keyvalue │ │ │ │ │ │ ├── AbstractKeyValue.java │ │ │ │ │ │ ├── AbstractMapEntry.java │ │ │ │ │ │ └── DefaultMapEntry.java │ │ │ │ │ ├── filter │ │ │ │ │ ├── ArithmeticExpression.java │ │ │ │ │ ├── BinaryExpression.java │ │ │ │ │ ├── BooleanExpression.java │ │ │ │ │ ├── ComparisonExpression.java │ │ │ │ │ ├── ConstantExpression.java │ │ │ │ │ ├── Expression.java │ │ │ │ │ ├── JMSSelectorFilter.java │ │ │ │ │ ├── LogicExpression.java │ │ │ │ │ ├── MessageFilter.java │ │ │ │ │ ├── PropertyExpression.java │ │ │ │ │ └── UnaryExpression.java │ │ │ │ │ ├── jms │ │ │ │ │ ├── BrokerDetails.java │ │ │ │ │ ├── ChannelLimitReachedException.java │ │ │ │ │ ├── Connection.java │ │ │ │ │ ├── ConnectionListener.java │ │ │ │ │ ├── ConnectionURL.java │ │ │ │ │ ├── FailoverPolicy.java │ │ │ │ │ ├── Message.java │ │ │ │ │ ├── MessageConsumer.java │ │ │ │ │ ├── MessageProducer.java │ │ │ │ │ ├── Session.java │ │ │ │ │ ├── TopicSubscriber.java │ │ │ │ │ └── failover │ │ │ │ │ │ ├── FailoverExchangeMethod.java │ │ │ │ │ │ ├── FailoverMethod.java │ │ │ │ │ │ ├── FailoverOneTime.java │ │ │ │ │ │ ├── FailoverRoundRobinServers.java │ │ │ │ │ │ ├── FailoverSingleServer.java │ │ │ │ │ │ └── NoFailover.java │ │ │ │ │ ├── jndi │ │ │ │ │ ├── Example.properties │ │ │ │ │ ├── NameParserImpl.java │ │ │ │ │ ├── PropertiesFileInitialContextFactory.java │ │ │ │ │ ├── ReadOnlyContext.java │ │ │ │ │ └── Utils.java │ │ │ │ │ ├── naming │ │ │ │ │ ├── ReadOnlyContext.java │ │ │ │ │ └── jndi.properties │ │ │ │ │ └── nclient │ │ │ │ │ ├── MessagePartListener.java │ │ │ │ │ └── util │ │ │ │ │ ├── ByteBufferMessage.java │ │ │ │ │ ├── MessageListener.java │ │ │ │ │ └── MessagePartListenerAdapter.java │ │ │ ├── old_test │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── qpid │ │ │ │ │ ├── IBMPerfTest │ │ │ │ │ ├── JNDIBindConnectionFactory.java │ │ │ │ │ ├── JNDIBindQueue.java │ │ │ │ │ ├── JNDIBindTopic.java │ │ │ │ │ └── README.txt │ │ │ │ │ ├── cluster │ │ │ │ │ └── Client.java │ │ │ │ │ ├── codec │ │ │ │ │ ├── BasicDeliverTest.java │ │ │ │ │ ├── Client.java │ │ │ │ │ └── Server.java │ │ │ │ │ ├── config │ │ │ │ │ ├── AMQConnectionFactoryInitialiser.java │ │ │ │ │ ├── AbstractConfig.java │ │ │ │ │ ├── ConnectionFactoryInitialiser.java │ │ │ │ │ ├── Connector.java │ │ │ │ │ ├── ConnectorConfig.java │ │ │ │ │ └── JBossConnectionFactoryInitialiser.java │ │ │ │ │ ├── flow │ │ │ │ │ └── ChannelFlowTest.java │ │ │ │ │ ├── fragmentation │ │ │ │ │ ├── TestLargePublisher.java │ │ │ │ │ └── TestLargeSubscriber.java │ │ │ │ │ ├── headers │ │ │ │ │ ├── Listener.java │ │ │ │ │ ├── MessageFactory.java │ │ │ │ │ └── Publisher.java │ │ │ │ │ ├── jndi │ │ │ │ │ └── referenceable │ │ │ │ │ │ ├── Bind.java │ │ │ │ │ │ ├── Lookup.java │ │ │ │ │ │ └── Unbind.java │ │ │ │ │ ├── latency │ │ │ │ │ └── LatencyTest.java │ │ │ │ │ ├── mina │ │ │ │ │ ├── AcceptorTest.java │ │ │ │ │ ├── BlockingAcceptorTest.java │ │ │ │ │ └── WriterTest.java │ │ │ │ │ ├── multiconsumer │ │ │ │ │ └── AMQTest.java │ │ │ │ │ ├── pubsub1 │ │ │ │ │ ├── TestPublisher.java │ │ │ │ │ └── TestSubscriber.java │ │ │ │ │ ├── test │ │ │ │ │ └── unit │ │ │ │ │ │ ├── client │ │ │ │ │ │ └── connection │ │ │ │ │ │ │ └── TestManyConnections.java │ │ │ │ │ │ └── jndi │ │ │ │ │ │ ├── PropertiesFileInitialContextFactoryTest.java │ │ │ │ │ │ └── example.properties │ │ │ │ │ ├── topic │ │ │ │ │ ├── Config.java │ │ │ │ │ ├── Listener.java │ │ │ │ │ ├── MessageFactory.java │ │ │ │ │ └── Publisher.java │ │ │ │ │ ├── transacted │ │ │ │ │ ├── Config.java │ │ │ │ │ ├── Ping.java │ │ │ │ │ ├── Pong.java │ │ │ │ │ ├── Relay.java │ │ │ │ │ └── Start.java │ │ │ │ │ └── weblogic │ │ │ │ │ ├── ServiceProvider.java │ │ │ │ │ └── ServiceRequestingClient.java │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── andes │ │ │ │ ├── client │ │ │ │ ├── AMQQueueTest.java │ │ │ │ ├── MockAMQConnection.java │ │ │ │ ├── message │ │ │ │ │ ├── AbstractJMSMessageTest.java │ │ │ │ │ └── TestMessageHelper.java │ │ │ │ ├── protocol │ │ │ │ │ ├── AMQProtocolHandlerTest.java │ │ │ │ │ └── MockIoSession.java │ │ │ │ └── security │ │ │ │ │ ├── UsernameHashedPasswordCallbackHandlerTest.java │ │ │ │ │ └── UsernamePasswordCallbackHandlerTest.java │ │ │ │ ├── jms │ │ │ │ └── FailoverPolicyTest.java │ │ │ │ └── unit │ │ │ │ ├── basic │ │ │ │ ├── FieldTableKeyEnumeratorTest.java │ │ │ │ └── FieldTablePropertyTest.java │ │ │ │ ├── client │ │ │ │ ├── BrokerDetails │ │ │ │ │ └── BrokerDetailsTest.java │ │ │ │ ├── channelclose │ │ │ │ │ ├── ChannelCloseMethodHandlerNoCloseOk.java │ │ │ │ │ └── NoCloseOKStateManager.java │ │ │ │ ├── connectionurl │ │ │ │ │ └── ConnectionURLTest.java │ │ │ │ ├── destinationurl │ │ │ │ │ └── DestinationURLTest.java │ │ │ │ └── message │ │ │ │ │ ├── BytesMessageTest.java │ │ │ │ │ ├── MapMessageTest.java │ │ │ │ │ ├── StreamMessageTest.java │ │ │ │ │ └── TextMessageTest.java │ │ │ │ ├── jndi │ │ │ │ ├── ConnectionFactoryTest.java │ │ │ │ ├── JNDIPropertyFileTest.java │ │ │ │ └── JNDITest.properties │ │ │ │ ├── message │ │ │ │ ├── MessageConverterTest.java │ │ │ │ ├── NonQpidMessage.java │ │ │ │ └── TestAMQSession.java │ │ │ │ └── tests.properties │ │ └── test │ │ │ ├── bin │ │ │ ├── IBM-JNDI-Setup.bat │ │ │ ├── IBM-JNDI-Setup.sh │ │ │ ├── IBM-Publisher.bat │ │ │ ├── IBM-Publisher.sh │ │ │ ├── IBM-PutGet.bat │ │ │ ├── IBM-PutGet.sh │ │ │ ├── IBM-README.txt │ │ │ ├── IBM-Receiver.bat │ │ │ ├── IBM-Receiver.sh │ │ │ ├── IBM-Sender.bat │ │ │ ├── IBM-Sender.sh │ │ │ ├── IBM-Subscriber.bat │ │ │ ├── IBM-Subscriber.sh │ │ │ ├── headersListener.sh │ │ │ ├── headersListenerGroup.sh │ │ │ ├── headersPublisher.sh │ │ │ ├── run_many.sh │ │ │ ├── serviceProvidingClient.sh │ │ │ ├── serviceRequestingClient.sh │ │ │ ├── testService.sh │ │ │ ├── topicListener.sh │ │ │ └── topicPublisher.sh │ │ │ ├── etc │ │ │ └── ApacheDS.properties │ │ │ └── example_build.xml │ ├── common.xml │ ├── common │ │ ├── Composite.tpl │ │ ├── Constant.tpl │ │ ├── Enum.tpl │ │ ├── Invoker.tpl │ │ ├── MethodDelegate.tpl │ │ ├── Option.tpl │ │ ├── StructFactory.tpl │ │ ├── Type.tpl │ │ ├── bin │ │ │ ├── qpid-jaddr │ │ │ └── qpid-run │ │ ├── build.xml │ │ ├── codegen │ │ ├── etc │ │ │ ├── qpid-run.conf │ │ │ └── qpid-run.conf.dev │ │ ├── genutil.py │ │ ├── protocol-version.xml │ │ ├── readme.txt │ │ ├── src │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ ├── common.bnd │ │ │ │ │ └── org │ │ │ │ │ ├── apache │ │ │ │ │ └── configuration │ │ │ │ │ │ └── PropertyNameResolver.java │ │ │ │ │ └── wso2 │ │ │ │ │ └── andes │ │ │ │ │ ├── AMQChannelClosedException.java │ │ │ │ │ ├── AMQChannelException.java │ │ │ │ │ ├── AMQConnectionClosedException.java │ │ │ │ │ ├── AMQConnectionException.java │ │ │ │ │ ├── AMQConnectionFailureException.java │ │ │ │ │ ├── AMQDisconnectedException.java │ │ │ │ │ ├── AMQException.java │ │ │ │ │ ├── AMQInternalException.java │ │ │ │ │ ├── AMQInvalidArgumentException.java │ │ │ │ │ ├── AMQInvalidRoutingKeyException.java │ │ │ │ │ ├── AMQPInvalidClassException.java │ │ │ │ │ ├── AMQProtocolException.java │ │ │ │ │ ├── AMQSecurityException.java │ │ │ │ │ ├── AMQStoreException.java │ │ │ │ │ ├── AMQSubscriptionClosedException.java │ │ │ │ │ ├── AMQTimeoutException.java │ │ │ │ │ ├── AMQUndeliveredException.java │ │ │ │ │ ├── AMQUnknownExchangeType.java │ │ │ │ │ ├── AMQUnresolvedAddressException.java │ │ │ │ │ ├── ConsoleOutput.java │ │ │ │ │ ├── QpidConfig.java │ │ │ │ │ ├── SerialException.java │ │ │ │ │ ├── api │ │ │ │ │ └── Message.java │ │ │ │ │ ├── codec │ │ │ │ │ ├── AMQCodecFactory.java │ │ │ │ │ ├── AMQDecoder.java │ │ │ │ │ └── AMQEncoder.java │ │ │ │ │ ├── common │ │ │ │ │ ├── AMQPFilterTypes.java │ │ │ │ │ ├── ClientProperties.java │ │ │ │ │ ├── Closeable.java │ │ │ │ │ └── QpidProperties.java │ │ │ │ │ ├── configuration │ │ │ │ │ ├── Accessor.java │ │ │ │ │ ├── ClientProperties.java │ │ │ │ │ ├── Configured.java │ │ │ │ │ ├── PropertyException.java │ │ │ │ │ ├── PropertyUtils.java │ │ │ │ │ ├── QpidProperty.java │ │ │ │ │ └── Validator.java │ │ │ │ │ ├── dtx │ │ │ │ │ └── XidImpl.java │ │ │ │ │ ├── exchange │ │ │ │ │ └── ExchangeDefaults.java │ │ │ │ │ ├── framing │ │ │ │ │ ├── AMQBody.java │ │ │ │ │ ├── AMQDataBlock.java │ │ │ │ │ ├── AMQDataBlockDecoder.java │ │ │ │ │ ├── AMQDataBlockEncoder.java │ │ │ │ │ ├── AMQFrame.java │ │ │ │ │ ├── AMQFrameDecodingException.java │ │ │ │ │ ├── AMQMethodBody.java │ │ │ │ │ ├── AMQMethodBodyFactory.java │ │ │ │ │ ├── AMQMethodBodyImpl.java │ │ │ │ │ ├── AMQMethodBodyInstanceFactory.java │ │ │ │ │ ├── AMQMethodFactory.java │ │ │ │ │ ├── AMQProtocolClassException.java │ │ │ │ │ ├── AMQProtocolHeaderException.java │ │ │ │ │ ├── AMQProtocolInstanceException.java │ │ │ │ │ ├── AMQProtocolVersionException.java │ │ │ │ │ ├── AMQShortString.java │ │ │ │ │ ├── AMQShortStringTokenizer.java │ │ │ │ │ ├── AMQType.java │ │ │ │ │ ├── AMQTypeMap.java │ │ │ │ │ ├── AMQTypedValue.java │ │ │ │ │ ├── BasicContentHeaderProperties.java │ │ │ │ │ ├── BodyFactory.java │ │ │ │ │ ├── CommonContentHeaderProperties.java │ │ │ │ │ ├── CompositeAMQDataBlock.java │ │ │ │ │ ├── Content.java │ │ │ │ │ ├── ContentBody.java │ │ │ │ │ ├── ContentBodyFactory.java │ │ │ │ │ ├── ContentHeaderBody.java │ │ │ │ │ ├── ContentHeaderBodyFactory.java │ │ │ │ │ ├── ContentHeaderProperties.java │ │ │ │ │ ├── ContentHeaderPropertiesFactory.java │ │ │ │ │ ├── DeferredDataBlock.java │ │ │ │ │ ├── EncodableAMQDataBlock.java │ │ │ │ │ ├── EncodingUtils.java │ │ │ │ │ ├── FieldTable.java │ │ │ │ │ ├── FieldTableFactory.java │ │ │ │ │ ├── HeartbeatBody.java │ │ │ │ │ ├── HeartbeatBodyFactory.java │ │ │ │ │ ├── ProtocolInitiation.java │ │ │ │ │ ├── SmallCompositeAMQDataBlock.java │ │ │ │ │ ├── VersionSpecificRegistry.java │ │ │ │ │ ├── abstraction │ │ │ │ │ │ ├── AbstractMethodConverter.java │ │ │ │ │ │ ├── ContentChunk.java │ │ │ │ │ │ ├── MessagePublishInfo.java │ │ │ │ │ │ ├── MessagePublishInfoConverter.java │ │ │ │ │ │ ├── MessagePublishInfoImpl.java │ │ │ │ │ │ └── ProtocolVersionMethodConverter.java │ │ │ │ │ ├── amqp_0_9 │ │ │ │ │ │ ├── AMQMethodBody_0_9.java │ │ │ │ │ │ └── MethodConverter_0_9.java │ │ │ │ │ ├── amqp_0_91 │ │ │ │ │ │ ├── AMQMethodBody_0_91.java │ │ │ │ │ │ └── MethodConverter_0_91.java │ │ │ │ │ └── amqp_8_0 │ │ │ │ │ │ ├── AMQMethodBody_8_0.java │ │ │ │ │ │ └── MethodConverter_8_0.java │ │ │ │ │ ├── messaging │ │ │ │ │ ├── Address.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── AddressParser.java │ │ │ │ │ │ ├── JAddr.java │ │ │ │ │ │ ├── LexError.java │ │ │ │ │ │ ├── Lexer.java │ │ │ │ │ │ ├── Lexicon.java │ │ │ │ │ │ ├── LineInfo.java │ │ │ │ │ │ ├── ParseError.java │ │ │ │ │ │ ├── Parser.java │ │ │ │ │ │ ├── PyPrint.java │ │ │ │ │ │ └── Token.java │ │ │ │ │ ├── pool │ │ │ │ │ ├── AndesExecuter.java │ │ │ │ │ ├── Job.java │ │ │ │ │ ├── ReadWriteJobQueue.java │ │ │ │ │ ├── ReadWriteRunnable.java │ │ │ │ │ ├── ReferenceCountingExecutorService.java │ │ │ │ │ └── ReferenceCountingService.java │ │ │ │ │ ├── protocol │ │ │ │ │ ├── AMQConstant.java │ │ │ │ │ ├── AMQMethodEvent.java │ │ │ │ │ ├── AMQMethodListener.java │ │ │ │ │ ├── AMQProtocolWriter.java │ │ │ │ │ ├── AMQVersionAwareProtocolSession.java │ │ │ │ │ ├── ProtocolEngine.java │ │ │ │ │ ├── ProtocolEngineFactory.java │ │ │ │ │ └── ProtocolVersionAware.java │ │ │ │ │ ├── security │ │ │ │ │ ├── AMQPCallbackHandler.java │ │ │ │ │ └── UsernamePasswordCallbackHandler.java │ │ │ │ │ ├── ssl │ │ │ │ │ └── SSLContextFactory.java │ │ │ │ │ ├── thread │ │ │ │ │ ├── DefaultThreadFactory.java │ │ │ │ │ ├── LoggingUncaughtExceptionHandler.java │ │ │ │ │ ├── QpidThreadExecutor.java │ │ │ │ │ ├── RealtimeThreadFactory.java │ │ │ │ │ ├── ThreadFactory.java │ │ │ │ │ └── Threading.java │ │ │ │ │ ├── transport │ │ │ │ │ ├── Binary.java │ │ │ │ │ ├── Binding.java │ │ │ │ │ ├── ClientDelegate.java │ │ │ │ │ ├── Connection.java │ │ │ │ │ ├── ConnectionDelegate.java │ │ │ │ │ ├── ConnectionException.java │ │ │ │ │ ├── ConnectionListener.java │ │ │ │ │ ├── ConnectionSettings.java │ │ │ │ │ ├── Field.java │ │ │ │ │ ├── Future.java │ │ │ │ │ ├── Header.java │ │ │ │ │ ├── Method.java │ │ │ │ │ ├── NetworkTransportConfiguration.java │ │ │ │ │ ├── OpenException.java │ │ │ │ │ ├── ProtocolDelegate.java │ │ │ │ │ ├── ProtocolError.java │ │ │ │ │ ├── ProtocolEvent.java │ │ │ │ │ ├── ProtocolHeader.java │ │ │ │ │ ├── ProtocolVersionException.java │ │ │ │ │ ├── ProtocolViolationException.java │ │ │ │ │ ├── Range.java │ │ │ │ │ ├── RangeSet.java │ │ │ │ │ ├── Receiver.java │ │ │ │ │ ├── Sender.java │ │ │ │ │ ├── SenderException.java │ │ │ │ │ ├── ServerDelegate.java │ │ │ │ │ ├── Session.java │ │ │ │ │ ├── SessionClosedException.java │ │ │ │ │ ├── SessionDelegate.java │ │ │ │ │ ├── SessionException.java │ │ │ │ │ ├── SessionListener.java │ │ │ │ │ ├── SocketConnectorFactory.java │ │ │ │ │ ├── Struct.java │ │ │ │ │ ├── TransportException.java │ │ │ │ │ ├── XaStatus.java │ │ │ │ │ ├── codec │ │ │ │ │ │ ├── AbstractDecoder.java │ │ │ │ │ │ ├── AbstractEncoder.java │ │ │ │ │ │ ├── BBDecoder.java │ │ │ │ │ │ ├── BBEncoder.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ ├── Encodable.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ ├── network │ │ │ │ │ │ ├── Assembler.java │ │ │ │ │ │ ├── ConnectionBinding.java │ │ │ │ │ │ ├── Disassembler.java │ │ │ │ │ │ ├── Frame.java │ │ │ │ │ │ ├── IncomingNetworkTransport.java │ │ │ │ │ │ ├── InputHandler.java │ │ │ │ │ │ ├── NetworkConnection.java │ │ │ │ │ │ ├── NetworkDelegate.java │ │ │ │ │ │ ├── NetworkEvent.java │ │ │ │ │ │ ├── NetworkTransport.java │ │ │ │ │ │ ├── OutgoingNetworkTransport.java │ │ │ │ │ │ ├── Transport.java │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ ├── IoNetworkConnection.java │ │ │ │ │ │ │ ├── IoNetworkTransport.java │ │ │ │ │ │ │ ├── IoReceiver.java │ │ │ │ │ │ │ └── IoSender.java │ │ │ │ │ │ ├── mina │ │ │ │ │ │ │ ├── MinaNetworkConnection.java │ │ │ │ │ │ │ ├── MinaNetworkHandler.java │ │ │ │ │ │ │ ├── MinaNetworkTransport.java │ │ │ │ │ │ │ └── MinaSender.java │ │ │ │ │ │ └── security │ │ │ │ │ │ │ ├── SecurityLayer.java │ │ │ │ │ │ │ ├── sasl │ │ │ │ │ │ │ ├── SASLEncryptor.java │ │ │ │ │ │ │ ├── SASLReceiver.java │ │ │ │ │ │ │ └── SASLSender.java │ │ │ │ │ │ │ └── ssl │ │ │ │ │ │ │ ├── QpidClientX509KeyManager.java │ │ │ │ │ │ │ ├── SSLReceiver.java │ │ │ │ │ │ │ ├── SSLSender.java │ │ │ │ │ │ │ └── SSLUtil.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── Functions.java │ │ │ │ │ │ ├── Logger.java │ │ │ │ │ │ ├── SliceIterator.java │ │ │ │ │ │ └── Waiter.java │ │ │ │ │ ├── url │ │ │ │ │ ├── AMQBindingURL.java │ │ │ │ │ ├── BindingURL.java │ │ │ │ │ ├── BindingURLParser.java │ │ │ │ │ ├── URLHelper.java │ │ │ │ │ └── URLSyntaxException.java │ │ │ │ │ └── util │ │ │ │ │ ├── CommandLineParser.java │ │ │ │ │ ├── ConcurrentLinkedMessageQueueAtomicSize.java │ │ │ │ │ ├── ConcurrentLinkedQueueAtomicSize.java │ │ │ │ │ ├── ConcurrentLinkedQueueNoSize.java │ │ │ │ │ ├── FileUtils.java │ │ │ │ │ ├── MessageQueue.java │ │ │ │ │ ├── NameUUIDGen.java │ │ │ │ │ ├── NetMatcher.java │ │ │ │ │ ├── PrettyPrintingUtils.java │ │ │ │ │ ├── RandomUUIDGen.java │ │ │ │ │ ├── Serial.java │ │ │ │ │ ├── Strings.java │ │ │ │ │ ├── UUIDGen.java │ │ │ │ │ ├── UUIDs.java │ │ │ │ │ └── concurrent │ │ │ │ │ ├── AlreadyUnblockedException.java │ │ │ │ │ ├── BatchSynchQueue.java │ │ │ │ │ ├── BatchSynchQueueBase.java │ │ │ │ │ ├── BooleanLatch.java │ │ │ │ │ ├── Capacity.java │ │ │ │ │ ├── SynchBuffer.java │ │ │ │ │ ├── SynchException.java │ │ │ │ │ ├── SynchQueue.java │ │ │ │ │ ├── SynchRecord.java │ │ │ │ │ └── SynchRef.java │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── andes │ │ │ │ ├── AMQExceptionTest.java │ │ │ │ ├── codec │ │ │ │ ├── AMQDecoderTest.java │ │ │ │ └── MockAMQVersionAwareProtocolSession.java │ │ │ │ ├── framing │ │ │ │ ├── AMQShortStringTest.java │ │ │ │ ├── BasicContentHeaderPropertiesTest.java │ │ │ │ ├── PropertyFieldTableTest.java │ │ │ │ └── abstraction │ │ │ │ │ └── MessagePublishInfoImplTest.java │ │ │ │ ├── pool │ │ │ │ └── ReferenceCountingExecutorServiceTest.java │ │ │ │ ├── session │ │ │ │ └── TestSession.java │ │ │ │ ├── test │ │ │ │ └── utils │ │ │ │ │ └── QpidTestCase.java │ │ │ │ ├── thread │ │ │ │ └── ThreadFactoryTest.java │ │ │ │ ├── transport │ │ │ │ ├── ConnectionTest.java │ │ │ │ ├── GenTest.java │ │ │ │ ├── MockSender.java │ │ │ │ ├── RangeSetTest.java │ │ │ │ ├── TestNetworkConnection.java │ │ │ │ ├── codec │ │ │ │ │ └── BBEncoderTest.java │ │ │ │ └── network │ │ │ │ │ ├── TransportTest.java │ │ │ │ │ ├── io │ │ │ │ │ ├── IoAcceptor.java │ │ │ │ │ └── IoTransport.java │ │ │ │ │ └── mina │ │ │ │ │ └── MinaNetworkHandlerTest.java │ │ │ │ └── util │ │ │ │ ├── CommandLineParserTest.java │ │ │ │ ├── FileUtilsTest.java │ │ │ │ ├── PropertyUtilsTest.java │ │ │ │ ├── SerialTest.java │ │ │ │ ├── default.properties │ │ │ │ └── mydefaults.properties │ │ ├── templates │ │ │ ├── method │ │ │ │ ├── MethodBodyInterface.vm │ │ │ │ └── version │ │ │ │ │ └── MethodBodyClass.vm │ │ │ └── model │ │ │ │ ├── ClientMethodDispatcherInterface.vm │ │ │ │ ├── MethodDispatcherInterface.vm │ │ │ │ ├── MethodRegistryClass.vm │ │ │ │ ├── ProtocolVersionListClass.vm │ │ │ │ ├── ServerMethodDispatcherInterface.vm │ │ │ │ └── version │ │ │ │ ├── AmqpConstantsClass.vm │ │ │ │ ├── ClientMethodDispatcherInterface.vm │ │ │ │ ├── MethodDispatcherInterface.vm │ │ │ │ ├── MethodRegistryClass.vm │ │ │ │ └── ServerMethodDispatcherInterface.vm │ │ └── templating.py │ ├── doc │ │ ├── AMQBlazeDetailedDesign.vsd │ │ ├── FramingClassDiagram.vsd │ │ ├── Qpid-architecture.dia │ │ ├── broker-0.5-network.dia │ │ ├── broker-0.N-network-phase-1.dia │ │ ├── broker-0.N-state.dia │ │ ├── broker-overview.dia │ │ ├── broker-priority-queue-subscription.dia │ │ ├── broker-queue-subscription.dia │ │ ├── client-0.5-connection-creation.dia │ │ ├── client-0.5-network-processing.dia │ │ ├── client-0.N-network-processing.dia │ │ ├── common-0.N-network.dia │ │ ├── network-driver-protocol-engine-sequence.dia │ │ └── noddy-network-blocks.dia │ ├── etc │ │ ├── code-style.xml │ │ ├── coding_standards.xml │ │ ├── license_header.txt │ │ └── log4j.xml │ ├── genpom │ ├── integrationtests │ │ ├── README.txt │ │ ├── bin │ │ │ └── interoptests.py │ │ ├── build.xml │ │ ├── docs │ │ │ └── RunningSustainedTests.txt │ │ ├── jar-with-dependencies.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── andes │ │ │ │ ├── interop │ │ │ │ ├── clienttestcases │ │ │ │ │ ├── TestCase1DummyRun.java │ │ │ │ │ ├── TestCase2BasicP2P.java │ │ │ │ │ ├── TestCase3BasicPubSub.java │ │ │ │ │ ├── TestCase4P2PMessageSize.java │ │ │ │ │ └── TestCase5PubSubMessageSize.java │ │ │ │ └── testcases │ │ │ │ │ ├── InteropTestCase1DummyRun.java │ │ │ │ │ ├── InteropTestCase2BasicP2P.java │ │ │ │ │ ├── InteropTestCase3BasicPubSub.java │ │ │ │ │ ├── InteropTestCase4P2PMessageSize.java │ │ │ │ │ └── InteropTestCase5PubSubMessageSize.java │ │ │ │ └── sustained │ │ │ │ ├── SustainedClientTestCase.java │ │ │ │ └── SustainedTestCase.java │ │ │ └── resources │ │ │ └── sustained-log4j.xml │ ├── ivy.xml │ ├── ivysettings-nexus.xml │ ├── junit-toolkit │ │ ├── build.xml │ │ └── src │ │ │ └── main │ │ │ └── org │ │ │ └── wso2 │ │ │ └── andes │ │ │ └── junit │ │ │ ├── concurrency │ │ │ ├── DefaultThreadFactory.java │ │ │ ├── PossibleDeadlockException.java │ │ │ ├── TestRunnable.java │ │ │ ├── ThreadTestCoordinator.java │ │ │ ├── ThreadTestExample.java │ │ │ └── package.html │ │ │ └── extensions │ │ │ ├── AsymptoticTestCase.java │ │ │ ├── AsymptoticTestDecorator.java │ │ │ ├── BaseThrottle.java │ │ │ ├── BatchedThrottle.java │ │ │ ├── DurationTestDecorator.java │ │ │ ├── InstrumentedTest.java │ │ │ ├── NullResultPrinter.java │ │ │ ├── ParameterVariationTestDecorator.java │ │ │ ├── ScaledTestDecorator.java │ │ │ ├── SetupTaskAware.java │ │ │ ├── SetupTaskHandler.java │ │ │ ├── ShutdownHookable.java │ │ │ ├── SleepThrottle.java │ │ │ ├── TKTestResult.java │ │ │ ├── TKTestRunner.java │ │ │ ├── TestRunnerImprovedErrorHandling.java │ │ │ ├── TestThreadAware.java │ │ │ ├── Throttle.java │ │ │ ├── TimingController.java │ │ │ ├── TimingControllerAware.java │ │ │ ├── WrappedSuiteTestDecorator.java │ │ │ ├── listeners │ │ │ ├── CSVTestListener.java │ │ │ ├── ConsoleTestListener.java │ │ │ ├── TKTestListener.java │ │ │ ├── XMLTestListener.java │ │ │ └── package.html │ │ │ ├── package.html │ │ │ └── util │ │ │ ├── CommandLineParser.java │ │ │ ├── ContextualProperties.java │ │ │ ├── MathUtils.java │ │ │ ├── ParsedProperties.java │ │ │ ├── SizeOf.java │ │ │ ├── StackQueue.java │ │ │ ├── TestContextProperties.java │ │ │ ├── TestUtils.java │ │ │ └── package.html │ ├── lib │ │ ├── cobertura │ │ │ └── README.txt │ │ ├── findbugs │ │ │ └── README.txt │ │ ├── ivy │ │ │ └── README.txt │ │ ├── org.eclipse.core.runtime.compatibility.registry_3.2.200.v20080610 │ │ │ ├── META-INF │ │ │ │ ├── ECLIPSE.RSA │ │ │ │ ├── ECLIPSE.SF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── eclipse.inf │ │ │ ├── about.html │ │ │ └── fragment.properties │ │ ├── org.eclipse.equinox.launcher.carbon.macosx_1.0.101.R34x_v20080731 │ │ │ ├── META-INF │ │ │ │ ├── ECLIPSE.RSA │ │ │ │ ├── ECLIPSE.SF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── eclipse.inf │ │ │ ├── about.html │ │ │ └── launcher.carbon.macosx.properties │ │ ├── org.eclipse.equinox.launcher.gtk.linux.x86_1.0.101.R34x_v20080805 │ │ │ ├── META-INF │ │ │ │ ├── ECLIPSE.RSA │ │ │ │ ├── ECLIPSE.SF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── eclipse.inf │ │ │ ├── about.html │ │ │ └── launcher.gtk.linux.x86.properties │ │ ├── org.eclipse.equinox.launcher.gtk.linux.x86_64_1.0.101.R34x_v20080731 │ │ │ ├── META-INF │ │ │ │ ├── ECLIPSE.RSA │ │ │ │ ├── ECLIPSE.SF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── eclipse.inf │ │ │ ├── about.html │ │ │ └── launcher.gtk.linux.x86_64.properties │ │ ├── org.eclipse.equinox.launcher.gtk.solaris.sparc_1.0.101.R34x_v20080731 │ │ │ ├── META-INF │ │ │ │ ├── ECLIPSE.RSA │ │ │ │ ├── ECLIPSE.SF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── eclipse.inf │ │ │ ├── about.html │ │ │ └── launcher.gtk.solaris.sparc.properties │ │ ├── org.eclipse.equinox.launcher.win32.win32.x86_1.0.101.R34x_v20080731 │ │ │ ├── META-INF │ │ │ │ ├── ECLIPSE.RSA │ │ │ │ ├── ECLIPSE.SF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── eclipse.inf │ │ │ ├── about.html │ │ │ ├── eclipse_1115.dll │ │ │ └── launcher.win32.win32.x86.properties │ │ └── poms │ │ │ ├── commons-beanutils-core-1.8.0.xml │ │ │ ├── commons-cli-1.0.xml │ │ │ ├── commons-codec-1.12.xml │ │ │ ├── commons-collections-3.2.xml │ │ │ ├── commons-configuration-1.6.xml │ │ │ ├── commons-digester-1.8.1.xml │ │ │ ├── commons-lang-2.2.xml │ │ │ ├── commons-logging-1.0.4.xml │ │ │ ├── commons-pool-1.4.xml │ │ │ ├── derby-10.6.1.0.xml │ │ │ ├── geronimo-jms_1.1_spec-1.0.xml │ │ │ ├── junit-3.8.1.xml │ │ │ ├── log4j-1.2.12.xml │ │ │ ├── mina-core-1.1.7.xml │ │ │ ├── mina-filter-ssl-1.1.7.xml │ │ │ ├── org.apache.felix.framework-2.0.5.xml │ │ │ ├── org.osgi.core-1.0.0.xml │ │ │ ├── slf4j-api-1.6.1.xml │ │ │ ├── slf4j-log4j12-1.6.1.xml │ │ │ └── xalan-2.7.0.xml │ ├── management │ │ ├── common │ │ │ ├── build.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ ├── management-common.bnd │ │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── andes │ │ │ │ │ └── management │ │ │ │ │ └── common │ │ │ │ │ ├── JMXConnnectionFactory.java │ │ │ │ │ ├── mbeans │ │ │ │ │ ├── ClusterManagementInformation.java │ │ │ │ │ ├── ConfigurationManagement.java │ │ │ │ │ ├── DurableTopicSubscriptionInformation.java │ │ │ │ │ ├── LoggingManagement.java │ │ │ │ │ ├── ManagedAMQChannel.java │ │ │ │ │ ├── ManagedBroker.java │ │ │ │ │ ├── ManagedConnection.java │ │ │ │ │ ├── ManagedExchange.java │ │ │ │ │ ├── ManagedQueue.java │ │ │ │ │ ├── MessageStatusInformation.java │ │ │ │ │ ├── QueueManagementInformation.java │ │ │ │ │ ├── ServerInformation.java │ │ │ │ │ ├── SubscriptionManagementInformation.java │ │ │ │ │ ├── UserManagement.java │ │ │ │ │ └── annotations │ │ │ │ │ │ ├── MBeanAttribute.java │ │ │ │ │ │ ├── MBeanConstructor.java │ │ │ │ │ │ ├── MBeanDescription.java │ │ │ │ │ │ ├── MBeanOperation.java │ │ │ │ │ │ └── MBeanOperationParameter.java │ │ │ │ │ └── sasl │ │ │ │ │ ├── CRAMMD5HashedSaslClientFactory.java │ │ │ │ │ ├── ClientSaslFactory.java │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── JCAProvider.java │ │ │ │ │ ├── PlainSaslClient.java │ │ │ │ │ ├── SaslProvider.java │ │ │ │ │ ├── UserPasswordCallbackHandler.java │ │ │ │ │ └── UsernameHashedPasswordCallbackHandler.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── qpid │ │ │ │ └── management │ │ │ │ └── common │ │ │ │ └── mbeans │ │ │ │ └── ManagedQueueTest.java │ │ ├── eclipse-plugin │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build-release-common.properties │ │ │ ├── build-release-linux-gtk-x86.properties │ │ │ ├── build-release-linux-gtk-x86_64.properties │ │ │ ├── build-release-macosx.properties │ │ │ ├── build-release-macosx.xml │ │ │ ├── build-release-solaris-gtk-sparc.properties │ │ │ ├── build-release-win32-win32-x86.properties │ │ │ ├── build-release.xml │ │ │ ├── build.xml │ │ │ ├── icons │ │ │ │ ├── add.gif │ │ │ │ ├── back.gif │ │ │ │ ├── configuration_management.gif │ │ │ │ ├── delete.gif │ │ │ │ ├── failure.gif │ │ │ │ ├── icon_ClosedFolder.gif │ │ │ │ ├── icon_OpenFolder.gif │ │ │ │ ├── logging_management.gif │ │ │ │ ├── mbean_view.png │ │ │ │ ├── notifications.gif │ │ │ │ ├── qpidConnections.gif │ │ │ │ ├── qpidmc.gif │ │ │ │ ├── qpidmc16.gif │ │ │ │ ├── qpidmc32.bmp │ │ │ │ ├── qpidmc32.gif │ │ │ │ ├── reconnect.gif │ │ │ │ ├── refresh.gif │ │ │ │ ├── server_information.gif │ │ │ │ ├── splash.bmp │ │ │ │ ├── stop.gif │ │ │ │ ├── success.gif │ │ │ │ ├── user_management.gif │ │ │ │ └── virtualhost_manager.gif │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── andes │ │ │ │ │ │ └── management │ │ │ │ │ │ └── ui │ │ │ │ │ │ ├── Activator.java │ │ │ │ │ │ ├── ApiVersion.java │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ ├── ApplicationActionBarAdvisor.java │ │ │ │ │ │ ├── ApplicationRegistry.java │ │ │ │ │ │ ├── ApplicationWorkbenchAdvisor.java │ │ │ │ │ │ ├── ApplicationWorkbenchWindowAdvisor.java │ │ │ │ │ │ ├── Constants.java │ │ │ │ │ │ ├── ManagedBean.java │ │ │ │ │ │ ├── ManagedObject.java │ │ │ │ │ │ ├── ManagedServer.java │ │ │ │ │ │ ├── Perspective.java │ │ │ │ │ │ ├── RefreshIntervalComboPanel.java │ │ │ │ │ │ ├── ServerRegistry.java │ │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── AbstractAction.java │ │ │ │ │ │ ├── AddServer.java │ │ │ │ │ │ ├── BackAction.java │ │ │ │ │ │ ├── CloseConnection.java │ │ │ │ │ │ ├── ReconnectServer.java │ │ │ │ │ │ ├── Refresh.java │ │ │ │ │ │ ├── RemoveServer.java │ │ │ │ │ │ └── VersionAction.java │ │ │ │ │ │ ├── exceptions │ │ │ │ │ │ ├── InfoRequiredException.java │ │ │ │ │ │ └── ManagementConsoleException.java │ │ │ │ │ │ ├── jmx │ │ │ │ │ │ ├── ClientListener.java │ │ │ │ │ │ ├── ClientNotificationListener.java │ │ │ │ │ │ ├── JMXManagedObject.java │ │ │ │ │ │ ├── JMXServerRegistry.java │ │ │ │ │ │ └── MBeanUtility.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ ├── AttributeData.java │ │ │ │ │ │ ├── ManagedAttributeModel.java │ │ │ │ │ │ ├── NotificationInfoModel.java │ │ │ │ │ │ ├── NotificationObject.java │ │ │ │ │ │ ├── OperationData.java │ │ │ │ │ │ ├── OperationDataModel.java │ │ │ │ │ │ └── ParameterData.java │ │ │ │ │ │ └── views │ │ │ │ │ │ ├── AttributesTabControl.java │ │ │ │ │ │ ├── INotificationViewer.java │ │ │ │ │ │ ├── MBeanTabFolderFactory.java │ │ │ │ │ │ ├── MBeanView.java │ │ │ │ │ │ ├── NavigationView.java │ │ │ │ │ │ ├── NotificationsTabControl.java │ │ │ │ │ │ ├── NumberVerifyListener.java │ │ │ │ │ │ ├── OperationTabControl.java │ │ │ │ │ │ ├── TabControl.java │ │ │ │ │ │ ├── TreeObject.java │ │ │ │ │ │ ├── VHNotificationsTabControl.java │ │ │ │ │ │ ├── ViewUtility.java │ │ │ │ │ │ ├── connection │ │ │ │ │ │ └── ConnectionOperationsTabControl.java │ │ │ │ │ │ ├── exchange │ │ │ │ │ │ ├── ExchangeOperationsTabControl.java │ │ │ │ │ │ └── HeadersExchangeOperationsTabControl.java │ │ │ │ │ │ ├── logging │ │ │ │ │ │ ├── ConfigurationFileTabControl.java │ │ │ │ │ │ ├── LoggingTableContentProvider.java │ │ │ │ │ │ ├── LoggingTableLabelProvider.java │ │ │ │ │ │ ├── LoggingTableSorter.java │ │ │ │ │ │ └── RuntimeTabControl.java │ │ │ │ │ │ ├── queue │ │ │ │ │ │ └── QueueOperationsTabControl.java │ │ │ │ │ │ ├── type │ │ │ │ │ │ ├── ConnectionTypeTabControl.java │ │ │ │ │ │ ├── ExchangeTypeTabControl.java │ │ │ │ │ │ ├── MBeanTypeTabControl.java │ │ │ │ │ │ └── QueueTypeTabControl.java │ │ │ │ │ │ ├── users │ │ │ │ │ │ ├── LegacySupportingUserManagement.java │ │ │ │ │ │ └── UserManagementTabControl.java │ │ │ │ │ │ └── vhost │ │ │ │ │ │ └── VHostTabControl.java │ │ │ │ └── resources │ │ │ │ │ ├── .eclipseproduct │ │ │ │ │ ├── jmxremote.sasl-plugin │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ ├── linux-gtk-x86 │ │ │ │ │ ├── Configuration │ │ │ │ │ │ └── config.ini │ │ │ │ │ ├── qpidmc │ │ │ │ │ └── qpidmc.ini │ │ │ │ │ ├── linux-gtk-x86_64 │ │ │ │ │ ├── Configuration │ │ │ │ │ │ └── config.ini │ │ │ │ │ ├── qpidmc │ │ │ │ │ └── qpidmc.ini │ │ │ │ │ ├── macosx │ │ │ │ │ ├── Configuration │ │ │ │ │ │ └── config.ini │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ ├── qpidmc │ │ │ │ │ │ └── qpidmc.ini │ │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Console.icns │ │ │ │ │ ├── solaris-gtk-sparc │ │ │ │ │ ├── Configuration │ │ │ │ │ │ └── config.ini │ │ │ │ │ ├── Qpidmc.l.pm │ │ │ │ │ ├── Qpidmc.m.pm │ │ │ │ │ ├── Qpidmc.s.pm │ │ │ │ │ ├── Qpidmc.t.pm │ │ │ │ │ ├── qpidmc │ │ │ │ │ └── qpidmc.ini │ │ │ │ │ └── win32-win32-x86 │ │ │ │ │ ├── Configuration │ │ │ │ │ └── config.ini │ │ │ │ │ ├── qpidmc.exe │ │ │ │ │ └── qpidmc.ini │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── andes │ │ │ │ └── management │ │ │ │ └── ui │ │ │ │ ├── ApiVersionTest.java │ │ │ │ ├── ApplicationRegistryTest.java │ │ │ │ └── ManagementConsoleTest.java │ │ └── example │ │ │ ├── build.xml │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── wso2 │ │ │ └── andes │ │ │ └── example │ │ │ └── jmxexample │ │ │ ├── AddQueue.java │ │ │ ├── DeleteMessagesFromTopOfTmp.java │ │ │ └── QueueInformation.java │ ├── maven-settings.xml │ ├── module.xml │ ├── perftests │ │ ├── RunningPerformanceTests.txt │ │ ├── bin │ │ │ ├── monitoring │ │ │ │ ├── monitor-broker.sh │ │ │ │ ├── runTests.sh │ │ │ │ └── stop-monitored-broker.sh │ │ │ ├── processing │ │ │ │ ├── process.sh │ │ │ │ ├── processAll.sh │ │ │ │ └── processTests.py │ │ │ ├── run_many.sh │ │ │ ├── topicListener.sh │ │ │ └── topicPublisher.sh │ │ ├── build.xml │ │ ├── dist-zip.xml │ │ ├── etc │ │ │ ├── jndi │ │ │ │ ├── activemq.properties │ │ │ │ ├── failovertest.properties │ │ │ │ ├── perftests.properties │ │ │ │ └── swiftmq.properties │ │ │ ├── perftests.log4j │ │ │ └── scripts │ │ │ │ ├── CTQ-Qpid-1.sh │ │ │ │ ├── CTQ-Qpid-2.sh │ │ │ │ ├── CTQ-Qpid-3.sh │ │ │ │ ├── CTQ-Qpid-4.sh │ │ │ │ ├── CTQ-Qpid-5.sh │ │ │ │ ├── CTQ-Qpid-6.sh │ │ │ │ ├── Connections.sh │ │ │ │ ├── JobQueue.sh │ │ │ │ ├── Latency.sh │ │ │ │ ├── MessageSize.sh │ │ │ │ ├── PT-Qpid-13.sh │ │ │ │ ├── PT-Qpid-14.sh │ │ │ │ ├── Reliability.sh │ │ │ │ ├── RunAll.sh │ │ │ │ ├── RunCore.sh │ │ │ │ ├── Test-ActiveMQ.sh │ │ │ │ ├── Test-SwiftMQ.sh │ │ │ │ ├── Throughput.sh │ │ │ │ ├── drainBroker.sh │ │ │ │ ├── extractResults.sh │ │ │ │ ├── extractThroughputResults.sh │ │ │ │ ├── fillBroker.sh │ │ │ │ ├── sendAndWaitClient.sh │ │ │ │ └── testWithPreFill.sh │ │ ├── generate-scripts │ │ ├── jar-with-dependencies.xml │ │ ├── scripts.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── wso2 │ │ │ └── andes │ │ │ └── client │ │ │ ├── config │ │ │ ├── AMQConnectionFactoryInitialiser.java │ │ │ ├── AbstractConfig.java │ │ │ ├── ConnectionFactoryInitialiser.java │ │ │ ├── Connector.java │ │ │ ├── ConnectorConfig.java │ │ │ └── JBossConnectionFactoryInitialiser.java │ │ │ ├── message │ │ │ └── TestMessageFactory.java │ │ │ ├── oldtopic │ │ │ ├── Config.java │ │ │ ├── Listener.java │ │ │ ├── MessageFactory.java │ │ │ └── Publisher.java │ │ │ ├── ping │ │ │ ├── PingAsyncTestPerf.java │ │ │ ├── PingClient.java │ │ │ ├── PingDurableClient.java │ │ │ ├── PingLatencyTestPerf.java │ │ │ ├── PingSendOnlyClient.java │ │ │ └── PingTestPerf.java │ │ │ ├── requestreply │ │ │ ├── PingPongBouncer.java │ │ │ ├── PingPongProducer.java │ │ │ └── PingPongTestPerf.java │ │ │ └── topic │ │ │ ├── Config.java │ │ │ ├── Listener.java │ │ │ ├── MessageFactory.java │ │ │ ├── Publisher.java │ │ │ ├── TopicWithSelectorsTransientVolumeTest.java │ │ │ └── topicselectors.properties │ ├── pom.xml │ ├── release-docs │ │ └── RELEASE_NOTES.txt │ ├── resources │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── README.txt │ ├── systests │ │ ├── build.xml │ │ ├── etc │ │ │ ├── bin │ │ │ │ ├── fail.py │ │ │ │ └── testclients.sh │ │ │ ├── config-systests-aclv2-settings.xml │ │ │ ├── config-systests-aclv2.xml │ │ │ ├── config-systests-derby-settings.xml │ │ │ ├── config-systests-derby.xml │ │ │ ├── config-systests-firewall-2.xml │ │ │ ├── config-systests-firewall-3.xml │ │ │ ├── config-systests-firewall-settings.xml │ │ │ ├── config-systests-firewall.xml │ │ │ ├── config-systests-settings.xml │ │ │ ├── config-systests.xml │ │ │ ├── global-default.txt │ │ │ ├── global-externaladminacl-changeloggerleveldenied.txt │ │ │ ├── global-externaladminacl-getallloggerlevelsdenied.txt │ │ │ ├── test-default.txt │ │ │ ├── test-externalacljmx-deleteexchangefailure.txt │ │ │ ├── test-externalacljmx.txt │ │ │ ├── test-logging.txt │ │ │ ├── test2-default.txt │ │ │ ├── virtualhosts-systests-aclv2-settings.xml │ │ │ ├── virtualhosts-systests-aclv2.xml │ │ │ ├── virtualhosts-systests-derby-settings.xml │ │ │ ├── virtualhosts-systests-derby.xml │ │ │ ├── virtualhosts-systests-firewall-2.xml │ │ │ ├── virtualhosts-systests-firewall-3.xml │ │ │ ├── virtualhosts-systests-firewall.xml │ │ │ └── virtualhosts-systests.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ ├── org │ │ │ └── wso2 │ │ │ │ └── andes │ │ │ │ ├── client │ │ │ │ ├── AMQQueueDeferredOrderingTest.java │ │ │ │ ├── AMQTestConnection_0_10.java │ │ │ │ ├── DispatcherTest.java │ │ │ │ ├── MessageListenerMultiConsumerImmediatePrefetch.java │ │ │ │ ├── MessageListenerMultiConsumerTest.java │ │ │ │ ├── MessageListenerTest.java │ │ │ │ ├── ResetMessageListenerTest.java │ │ │ │ ├── SessionCreateTest.java │ │ │ │ ├── message │ │ │ │ │ ├── AMQPEncodedMapMessageTest.java │ │ │ │ │ └── NonQpidObjectMessage.java │ │ │ │ └── ssl │ │ │ │ │ └── SSLTest.java │ │ │ │ ├── jmx │ │ │ │ ├── ManagementActorLoggingTest.java │ │ │ │ ├── MessageConnectionStatisticsTest.java │ │ │ │ ├── MessageStatisticsConfigurationTest.java │ │ │ │ ├── MessageStatisticsDeliveryTest.java │ │ │ │ ├── MessageStatisticsReportingTest.java │ │ │ │ ├── MessageStatisticsTest.java │ │ │ │ └── MessageStatisticsTestCase.java │ │ │ │ ├── server │ │ │ │ ├── BrokerStartupTest.java │ │ │ │ ├── configuration │ │ │ │ │ └── ServerConfigurationFileTest.java │ │ │ │ ├── exchange │ │ │ │ │ ├── MessagingTestConfigProperties.java │ │ │ │ │ └── ReturnUnroutableMandatoryMessageTest.java │ │ │ │ ├── failover │ │ │ │ │ ├── FailoverMethodTest.java │ │ │ │ │ └── MessageDisappearWithIOExceptionTest.java │ │ │ │ ├── failure │ │ │ │ │ └── HeapExhaustion.java │ │ │ │ ├── logging │ │ │ │ │ ├── AbstractTestLogging.java │ │ │ │ │ ├── AccessControlLoggingTest.java │ │ │ │ │ ├── AlertingTest.java │ │ │ │ │ ├── BindingLoggingTest.java │ │ │ │ │ ├── BrokerLoggingTest.java │ │ │ │ │ ├── ChannelLoggingTest.java │ │ │ │ │ ├── ConnectionLoggingTest.java │ │ │ │ │ ├── DerbyMessageStoreLoggingTest.java │ │ │ │ │ ├── DurableQueueLoggingTest.java │ │ │ │ │ ├── ExchangeLoggingTest.java │ │ │ │ │ ├── ManagementLoggingTest.java │ │ │ │ │ ├── MemoryMessageStoreLoggingTest.java │ │ │ │ │ ├── QueueLoggingTest.java │ │ │ │ │ ├── SubscriptionLoggingTest.java │ │ │ │ │ ├── TransientQueueLoggingTest.java │ │ │ │ │ └── VirtualHostLoggingTest.java │ │ │ │ ├── queue │ │ │ │ │ ├── ConflationQueueTest.java │ │ │ │ │ ├── DeepQueueConsumeWithSelector.java │ │ │ │ │ ├── ModelTest.java │ │ │ │ │ ├── MultipleTransactedBatchProducerTest.java │ │ │ │ │ ├── PersistentTestManual.java │ │ │ │ │ ├── PriorityTest.java │ │ │ │ │ ├── ProducerFlowControlTest.java │ │ │ │ │ ├── QueueDepthWithSelectorTest.java │ │ │ │ │ ├── SubscriptionTestHelper.java │ │ │ │ │ └── TimeToLiveTest.java │ │ │ │ ├── security │ │ │ │ │ ├── acl │ │ │ │ │ │ ├── AbstractACLTestCase.java │ │ │ │ │ │ ├── ExhaustiveACLTest.java │ │ │ │ │ │ ├── ExternalACLFileTest.java │ │ │ │ │ │ ├── ExternalACLJMXTest.java │ │ │ │ │ │ ├── ExternalACLTest.java │ │ │ │ │ │ └── ExternalAdminACLTest.java │ │ │ │ │ └── firewall │ │ │ │ │ │ └── FirewallConfigTest.java │ │ │ │ ├── store │ │ │ │ │ ├── PersistentStoreTest.java │ │ │ │ │ └── SlowMessageStore.java │ │ │ │ └── util │ │ │ │ │ ├── AveragedRun.java │ │ │ │ │ ├── RunStats.java │ │ │ │ │ └── TimedRun.java │ │ │ │ ├── systest │ │ │ │ ├── GlobalQueuesTest.java │ │ │ │ ├── GlobalTopicsTest.java │ │ │ │ ├── MergeConfigurationTest.java │ │ │ │ ├── SubscriptionTest.java │ │ │ │ ├── TestingBaseCase.java │ │ │ │ └── TopicTest.java │ │ │ │ ├── test │ │ │ │ ├── client │ │ │ │ │ ├── CancelTest.java │ │ │ │ │ ├── DupsOkTest.java │ │ │ │ │ ├── FlowControlTest.java │ │ │ │ │ ├── QueueBrowserAutoAckTest.java │ │ │ │ │ ├── QueueBrowserClientAckTest.java │ │ │ │ │ ├── QueueBrowserDupsOkTest.java │ │ │ │ │ ├── QueueBrowserNoAckTest.java │ │ │ │ │ ├── QueueBrowserPreAckTest.java │ │ │ │ │ ├── QueueBrowserTransactedTest.java │ │ │ │ │ ├── RollbackOrderTest.java │ │ │ │ │ ├── destination │ │ │ │ │ │ └── AddressBasedDestinationTest.java │ │ │ │ │ ├── failover │ │ │ │ │ │ └── FailoverTest.java │ │ │ │ │ ├── message │ │ │ │ │ │ ├── JMSDestinationTest.java │ │ │ │ │ │ ├── MessageToStringTest.java │ │ │ │ │ │ ├── ObjectMessageTest.java │ │ │ │ │ │ └── SelectorTest.java │ │ │ │ │ ├── queue │ │ │ │ │ │ ├── LVQTest.java │ │ │ │ │ │ └── QueuePolicyTest.java │ │ │ │ │ └── timeouts │ │ │ │ │ │ ├── SyncWaitDelayTest.java │ │ │ │ │ │ └── SyncWaitTimeoutDelayTest.java │ │ │ │ ├── framework │ │ │ │ │ ├── AMQPPublisher.java │ │ │ │ │ ├── Assertion.java │ │ │ │ │ ├── AssertionBase.java │ │ │ │ │ ├── BrokerLifecycleAware.java │ │ │ │ │ ├── CauseFailure.java │ │ │ │ │ ├── CauseFailureUserPrompt.java │ │ │ │ │ ├── Circuit.java │ │ │ │ │ ├── CircuitEnd.java │ │ │ │ │ ├── CircuitEndBase.java │ │ │ │ │ ├── DropInTest.java │ │ │ │ │ ├── ExceptionMonitor.java │ │ │ │ │ ├── FrameworkBaseCase.java │ │ │ │ │ ├── FrameworkClientBaseCase.java │ │ │ │ │ ├── FrameworkTestContext.java │ │ │ │ │ ├── LocalAMQPCircuitFactory.java │ │ │ │ │ ├── LocalCircuitFactory.java │ │ │ │ │ ├── MessageIdentityVector.java │ │ │ │ │ ├── MessageMonitor.java │ │ │ │ │ ├── MessagingTestConfigProperties.java │ │ │ │ │ ├── NotApplicableAssertion.java │ │ │ │ │ ├── Publisher.java │ │ │ │ │ ├── Receiver.java │ │ │ │ │ ├── TestCaseVector.java │ │ │ │ │ ├── TestClientDetails.java │ │ │ │ │ ├── TestUtils.java │ │ │ │ │ ├── clocksynch │ │ │ │ │ │ ├── ClockSynchFailureException.java │ │ │ │ │ │ ├── ClockSynchThread.java │ │ │ │ │ │ ├── ClockSynchronizer.java │ │ │ │ │ │ ├── LocalClockSynchronizer.java │ │ │ │ │ │ ├── UDPClockReference.java │ │ │ │ │ │ └── UDPClockSynchronizer.java │ │ │ │ │ ├── distributedcircuit │ │ │ │ │ │ ├── DistributedCircuitImpl.java │ │ │ │ │ │ ├── DistributedPublisherImpl.java │ │ │ │ │ │ ├── DistributedReceiverImpl.java │ │ │ │ │ │ └── TestClientCircuitEnd.java │ │ │ │ │ ├── distributedtesting │ │ │ │ │ │ ├── Coordinator.java │ │ │ │ │ │ ├── DistributedTestDecorator.java │ │ │ │ │ │ ├── FanOutTestDecorator.java │ │ │ │ │ │ ├── InteropTestDecorator.java │ │ │ │ │ │ ├── OptOutTestCase.java │ │ │ │ │ │ ├── TestClient.java │ │ │ │ │ │ └── TestClientControlledTest.java │ │ │ │ │ ├── listeners │ │ │ │ │ │ └── XMLTestListener.java │ │ │ │ │ ├── localcircuit │ │ │ │ │ │ ├── LocalAMQPPublisherImpl.java │ │ │ │ │ │ ├── LocalCircuitImpl.java │ │ │ │ │ │ ├── LocalPublisherImpl.java │ │ │ │ │ │ └── LocalReceiverImpl.java │ │ │ │ │ ├── package.html │ │ │ │ │ └── sequencers │ │ │ │ │ │ ├── BaseCircuitFactory.java │ │ │ │ │ │ ├── CircuitFactory.java │ │ │ │ │ │ ├── FanOutCircuitFactory.java │ │ │ │ │ │ └── InteropCircuitFactory.java │ │ │ │ ├── testcases │ │ │ │ │ ├── FailoverTest.java │ │ │ │ │ ├── ImmediateMessageTest.java │ │ │ │ │ ├── MandatoryMessageTest.java │ │ │ │ │ ├── RollbackTest.java │ │ │ │ │ └── TTLTest.java │ │ │ │ ├── unit │ │ │ │ │ ├── ack │ │ │ │ │ │ ├── Acknowledge2ConsumersTest.java │ │ │ │ │ │ ├── AcknowledgeAfterFailoverOnMessageTest.java │ │ │ │ │ │ ├── AcknowledgeAfterFailoverTest.java │ │ │ │ │ │ ├── AcknowledgeOnMessageTest.java │ │ │ │ │ │ ├── AcknowledgeTest.java │ │ │ │ │ │ ├── FailoverBeforeConsumingRecoverTest.java │ │ │ │ │ │ ├── QuickAcking.java │ │ │ │ │ │ └── RecoverTest.java │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── BytesMessageTest.java │ │ │ │ │ │ ├── FieldTableMessageTest.java │ │ │ │ │ │ ├── InvalidDestinationTest.java │ │ │ │ │ │ ├── LargeMessageTest.java │ │ │ │ │ │ ├── MapMessageTest.java │ │ │ │ │ │ ├── MultipleConnectionTest.java │ │ │ │ │ │ ├── ObjectMessageTest.java │ │ │ │ │ │ ├── PropertyValueTest.java │ │ │ │ │ │ ├── PubSubTwoConnectionTest.java │ │ │ │ │ │ ├── ReceiveTest.java │ │ │ │ │ │ ├── SessionStartTest.java │ │ │ │ │ │ ├── TextMessageTest.java │ │ │ │ │ │ └── close │ │ │ │ │ │ │ └── CloseTest.java │ │ │ │ │ ├── client │ │ │ │ │ │ ├── AMQConnectionTest.java │ │ │ │ │ │ ├── AMQSessionTest.java │ │ │ │ │ │ ├── DynamicQueueExchangeCreateTest.java │ │ │ │ │ │ ├── channelclose │ │ │ │ │ │ │ ├── ChannelCloseOkTest.java │ │ │ │ │ │ │ ├── ChannelCloseTest.java │ │ │ │ │ │ │ └── CloseWithBlockingReceiveTest.java │ │ │ │ │ │ ├── connection │ │ │ │ │ │ │ ├── CloseAfterConnectionFailureTest.java │ │ │ │ │ │ │ ├── ConnectionCloseTest.java │ │ │ │ │ │ │ ├── ConnectionStartTest.java │ │ │ │ │ │ │ ├── ConnectionTest.java │ │ │ │ │ │ │ └── ExceptionListenerTest.java │ │ │ │ │ │ ├── forwardall │ │ │ │ │ │ │ ├── Client.java │ │ │ │ │ │ │ ├── CombinedTest.java │ │ │ │ │ │ │ ├── Service.java │ │ │ │ │ │ │ ├── ServiceCreator.java │ │ │ │ │ │ │ └── SpecialQueue.java │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ └── ObjectMessageTest.java │ │ │ │ │ │ ├── protocol │ │ │ │ │ │ │ └── AMQProtocolSessionTest.java │ │ │ │ │ │ └── temporaryqueue │ │ │ │ │ │ │ └── TemporaryQueueTest.java │ │ │ │ │ ├── close │ │ │ │ │ │ ├── CloseBeforeAckTest.java │ │ │ │ │ │ ├── JavaServerCloseRaceConditionTest.java │ │ │ │ │ │ ├── MessageRequeueTest.java │ │ │ │ │ │ ├── TopicPublisherCloseTest.java │ │ │ │ │ │ └── VerifyAckingOkDuringClose.java │ │ │ │ │ ├── ct │ │ │ │ │ │ └── DurableSubscriberTest.java │ │ │ │ │ ├── message │ │ │ │ │ │ ├── JMSPropertiesTest.java │ │ │ │ │ │ ├── StreamMessageTest.java │ │ │ │ │ │ ├── UTF8En │ │ │ │ │ │ ├── UTF8Jp │ │ │ │ │ │ └── UTF8Test.java │ │ │ │ │ ├── publish │ │ │ │ │ │ └── DirtyTransactedPublishTest.java │ │ │ │ │ ├── topic │ │ │ │ │ │ ├── DurableSubscriptionTest.java │ │ │ │ │ │ ├── TopicPublisherTest.java │ │ │ │ │ │ └── TopicSessionTest.java │ │ │ │ │ ├── transacted │ │ │ │ │ │ ├── CommitRollbackTest.java │ │ │ │ │ │ ├── TransactedTest.java │ │ │ │ │ │ ├── TransactionTimeoutConfigurationTest.java │ │ │ │ │ │ ├── TransactionTimeoutDisabledTest.java │ │ │ │ │ │ ├── TransactionTimeoutTest.java │ │ │ │ │ │ └── TransactionTimeoutTestCase.java │ │ │ │ │ └── xa │ │ │ │ │ │ ├── AbstractXATestCase.java │ │ │ │ │ │ ├── FaultTest.java │ │ │ │ │ │ ├── QueueTest.java │ │ │ │ │ │ └── TopicTest.java │ │ │ │ └── utils │ │ │ │ │ ├── BrokerHolder.java │ │ │ │ │ ├── ConversationFactory.java │ │ │ │ │ ├── FailoverBaseCase.java │ │ │ │ │ ├── InternalBrokerHolder.java │ │ │ │ │ ├── JMXTestUtils.java │ │ │ │ │ ├── QpidBrokerTestCase.java │ │ │ │ │ ├── QpidClientConnection.java │ │ │ │ │ ├── QpidClientConnectionHelper.java │ │ │ │ │ ├── ReflectionUtils.java │ │ │ │ │ ├── ReflectionUtilsException.java │ │ │ │ │ ├── SpawnedBrokerHolder.java │ │ │ │ │ └── protocol │ │ │ │ │ └── TestIoSession.java │ │ │ │ └── util │ │ │ │ ├── ClasspathScanner.java │ │ │ │ ├── LogMonitor.java │ │ │ │ └── LogMonitorTest.java │ │ │ └── systests.log4j │ ├── tasks │ │ └── src │ │ │ └── org │ │ │ └── apache │ │ │ └── qpid │ │ │ └── tasks │ │ │ ├── BaseTask.java │ │ │ ├── Foreach.java │ │ │ ├── Map.java │ │ │ ├── PropertyMapper.java │ │ │ └── Require.java │ ├── test-profiles │ │ ├── CPPExcludes │ │ ├── CPPNoPrefetchExcludes │ │ ├── CPPPrefetchExcludes │ │ ├── CPPTransientExcludes │ │ ├── Excludes │ │ ├── Java010Excludes │ │ ├── JavaExcludes │ │ ├── JavaPersistentExcludes │ │ ├── JavaPre010Excludes │ │ ├── JavaTransientExcludes │ │ ├── XAExcludes │ │ ├── clean-dir │ │ ├── cpp.async.excludes │ │ ├── cpp.async.testprofile │ │ ├── cpp.cluster.testprofile │ │ ├── cpp.excludes │ │ ├── cpp.noprefetch.testprofile │ │ ├── cpp.ssl.excludes │ │ ├── cpp.ssl.testprofile │ │ ├── cpp.testprofile │ │ ├── java-dby-spawn.0-10.testprofile │ │ ├── java-dby-spawn.0-9-1.testprofile │ │ ├── java-dby.0-10.testprofile │ │ ├── java-dby.0-9-1.testprofile │ │ ├── java-mms-spawn.0-10.testprofile │ │ ├── java-mms-spawn.0-9-1.testprofile │ │ ├── java-mms.0-10.testprofile │ │ ├── java-mms.0-9-1.testprofile │ │ ├── kill-broker │ │ ├── log4j-test.xml │ │ ├── start-broker │ │ ├── test-provider.properties │ │ ├── test_resources │ │ │ └── ssl │ │ │ │ ├── CA_db │ │ │ │ ├── cert8.db │ │ │ │ ├── key3.db │ │ │ │ ├── rootca.crt │ │ │ │ └── secmod.db │ │ │ │ ├── app1.crt │ │ │ │ ├── app1.req │ │ │ │ ├── app2.crt │ │ │ │ ├── app2.req │ │ │ │ ├── certstore.jks │ │ │ │ ├── keystore.jks │ │ │ │ ├── pfile │ │ │ │ └── server_db │ │ │ │ ├── cert8.db │ │ │ │ ├── key3.db │ │ │ │ ├── secmod.db │ │ │ │ ├── server.crt │ │ │ │ └── server.req │ │ └── testprofile.defaults │ ├── testkit │ │ ├── README.txt │ │ ├── bin │ │ │ ├── run_soak_client.sh │ │ │ └── soak_report.sh │ │ └── build.xml │ ├── tools │ │ ├── README.txt │ │ ├── bin │ │ │ ├── Profile-run-from-source │ │ │ ├── check-qpid-java-env │ │ │ ├── perf-report │ │ │ ├── qpid-bench │ │ │ ├── qpid-python-testkit │ │ │ ├── run-pub │ │ │ └── run-sub │ │ ├── build.xml │ │ ├── etc │ │ │ └── test.log4j │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── wso2 │ │ │ └── andes │ │ │ ├── testkit │ │ │ ├── Client.java │ │ │ ├── ErrorHandler.java │ │ │ ├── Receiver.java │ │ │ └── Sender.java │ │ │ └── tools │ │ │ ├── Clock.java │ │ │ ├── JNDICheck.java │ │ │ ├── LatencyTest.java │ │ │ ├── MessageFactory.java │ │ │ ├── PerfBase.java │ │ │ ├── PerfConsumer.java │ │ │ ├── PerfProducer.java │ │ │ ├── PerfTestController.java │ │ │ ├── QpidBench.java │ │ │ └── TestParams.java │ └── upload.xml ├── gentools │ ├── LICENSE │ ├── NOTICE │ ├── README.txt │ ├── build │ ├── build.xml │ ├── lib │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.txt │ │ ├── velocity-1.4.jar │ │ └── velocity-dep-1.4.jar │ ├── src │ │ └── org │ │ │ └── apache │ │ │ └── qpid │ │ │ └── gentools │ │ │ ├── AmqpClass.java │ │ │ ├── AmqpClassMap.java │ │ │ ├── AmqpConstant.java │ │ │ ├── AmqpConstantSet.java │ │ │ ├── AmqpDomain.java │ │ │ ├── AmqpDomainMap.java │ │ │ ├── AmqpDomainVersionMap.java │ │ │ ├── AmqpField.java │ │ │ ├── AmqpFieldMap.java │ │ │ ├── AmqpFlagMap.java │ │ │ ├── AmqpMethod.java │ │ │ ├── AmqpMethodMap.java │ │ │ ├── AmqpModel.java │ │ │ ├── AmqpOrdinalFieldMap.java │ │ │ ├── AmqpOrdinalVersionMap.java │ │ │ ├── AmqpOverloadedParameterMap.java │ │ │ ├── AmqpParseException.java │ │ │ ├── AmqpTemplateException.java │ │ │ ├── AmqpTypeMappingException.java │ │ │ ├── AmqpVersion.java │ │ │ ├── AmqpVersionSet.java │ │ │ ├── BitFieldGenerateMethod.java │ │ │ ├── CommandGenerateMethod.java │ │ │ ├── ConsolidatedField.java │ │ │ ├── CppGenerator.java │ │ │ ├── DotnetGenerator.java │ │ │ ├── GenerateMethod.java │ │ │ ├── Generator.java │ │ │ ├── JavaGenerator.java │ │ │ ├── LanguageConverter.java │ │ │ ├── Main.java │ │ │ ├── MangledGenerateMethod.java │ │ │ ├── NodeAware.java │ │ │ ├── Printable.java │ │ │ ├── SingleVersionClass.java │ │ │ ├── SingleVersionField.java │ │ │ ├── SingleVersionMethod.java │ │ │ ├── SingleVersionModel.java │ │ │ ├── TargetDirectoryException.java │ │ │ ├── Utils.java │ │ │ └── VersionConsistencyCheck.java │ ├── templ.cpp │ │ ├── method │ │ │ └── MethodBodyClass.h.tmpl │ │ └── model │ │ │ ├── AMQP_ClientOperations.h.tmpl │ │ │ ├── AMQP_ClientProxy.cpp.tmpl │ │ │ ├── AMQP_ClientProxy.h.tmpl │ │ │ ├── AMQP_Constants.h.tmpl │ │ │ ├── AMQP_HighestVersion.h.tmpl │ │ │ ├── AMQP_MethodVersionMap.cpp.tmpl │ │ │ ├── AMQP_MethodVersionMap.h.tmpl │ │ │ ├── AMQP_ServerOperations.h.tmpl │ │ │ ├── AMQP_ServerProxy.cpp.tmpl │ │ │ └── AMQP_ServerProxy.h.tmpl │ ├── templ.java │ │ ├── PropertyContentHeaderClass.tmpl │ │ ├── method │ │ │ └── version │ │ │ │ └── MethodBodyClass.vm │ │ └── model │ │ │ ├── ProtocolVersionListClass.vm │ │ │ └── version │ │ │ ├── AmqpConstantsClass.vm │ │ │ └── MethodRegistryClass.vm │ └── xml-src │ │ ├── amqp-0.10.test.xml │ │ ├── amqp-0.8.test.xml │ │ ├── amqp-0.9.test.xml │ │ └── cluster-0.9.test.xml ├── orbit │ ├── andes-client │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── wso2 │ │ │ └── andes │ │ │ └── wso2 │ │ │ └── jndi │ │ │ └── TenantAwareInitialContextFactory.java │ └── andes │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── andes │ │ │ └── wso2 │ │ │ ├── internal │ │ │ └── QpidBundleActivator.java │ │ │ └── service │ │ │ ├── QpidNotificationService.java │ │ │ └── QpidNotificationServiceImpl.java │ │ └── resources │ │ └── qpidversion.properties ├── python │ └── mllib │ │ ├── __init__.py │ │ ├── dom.py │ │ ├── parsers.py │ │ └── transforms.py └── specs │ ├── LICENSE │ ├── NOTICE │ ├── amqp-dtx-preview.0-9.xml │ ├── amqp-errata.0-9.xml │ ├── amqp-nogen.0-9.xml │ ├── amqp.0-10-preview.xml │ ├── amqp.0-10-qpid-errata.xml │ ├── amqp.0-10.dtd │ ├── amqp.0-10.xml │ ├── amqp.0-8.xml │ ├── amqp.0-9.xml │ ├── amqp0-9-1.stripped.xml │ ├── cluster.0-8.xml │ └── management-schema.xml ├── pom.xml └── pull_request_template.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/README.md -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/issue_template.md -------------------------------------------------------------------------------- /modules/andes-core/broker-plugins/access-control/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker-plugins/access-control/MANIFEST.MF -------------------------------------------------------------------------------- /modules/andes-core/broker-plugins/access-control/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker-plugins/access-control/build.xml -------------------------------------------------------------------------------- /modules/andes-core/broker-plugins/access-control/src/main/resources/acl.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker-plugins/access-control/src/main/resources/acl.xsd -------------------------------------------------------------------------------- /modules/andes-core/broker-plugins/experimental/info/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker-plugins/experimental/info/MANIFEST.MF -------------------------------------------------------------------------------- /modules/andes-core/broker-plugins/experimental/info/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker-plugins/experimental/info/build.properties -------------------------------------------------------------------------------- /modules/andes-core/broker-plugins/experimental/info/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker-plugins/experimental/info/build.xml -------------------------------------------------------------------------------- /modules/andes-core/broker-plugins/experimental/shutdown/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker-plugins/experimental/shutdown/MANIFEST.MF -------------------------------------------------------------------------------- /modules/andes-core/broker-plugins/experimental/shutdown/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker-plugins/experimental/shutdown/build.xml -------------------------------------------------------------------------------- /modules/andes-core/broker-plugins/experimental/shutdown/src/main/java/shutdown.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker-plugins/experimental/shutdown/src/main/java/shutdown.bnd -------------------------------------------------------------------------------- /modules/andes-core/broker-plugins/extras/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker-plugins/extras/MANIFEST.MF -------------------------------------------------------------------------------- /modules/andes-core/broker-plugins/extras/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker-plugins/extras/build.xml -------------------------------------------------------------------------------- /modules/andes-core/broker-plugins/firewall/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker-plugins/firewall/MANIFEST.MF -------------------------------------------------------------------------------- /modules/andes-core/broker-plugins/firewall/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker-plugins/firewall/build.xml -------------------------------------------------------------------------------- /modules/andes-core/broker/bin/create-example-ssl-stores.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/bin/create-example-ssl-stores.bat -------------------------------------------------------------------------------- /modules/andes-core/broker/bin/create-example-ssl-stores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/bin/create-example-ssl-stores.sh -------------------------------------------------------------------------------- /modules/andes-core/broker/bin/msTool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/bin/msTool.sh -------------------------------------------------------------------------------- /modules/andes-core/broker/bin/qpid-passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/bin/qpid-passwd -------------------------------------------------------------------------------- /modules/andes-core/broker/bin/qpid-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/bin/qpid-server -------------------------------------------------------------------------------- /modules/andes-core/broker/bin/qpid-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/bin/qpid-server.bat -------------------------------------------------------------------------------- /modules/andes-core/broker/bin/qpid.stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/bin/qpid.stop -------------------------------------------------------------------------------- /modules/andes-core/broker/bin/qpid.stopall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/bin/qpid.stopall -------------------------------------------------------------------------------- /modules/andes-core/broker/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/build.xml -------------------------------------------------------------------------------- /modules/andes-core/broker/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/etc/config.xml -------------------------------------------------------------------------------- /modules/andes-core/broker/etc/debug.log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/etc/debug.log4j.xml -------------------------------------------------------------------------------- /modules/andes-core/broker/etc/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/etc/log4j.xml -------------------------------------------------------------------------------- /modules/andes-core/broker/etc/md5passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/etc/md5passwd -------------------------------------------------------------------------------- /modules/andes-core/broker/etc/mstool-log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/etc/mstool-log4j.xml -------------------------------------------------------------------------------- /modules/andes-core/broker/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/etc/passwd -------------------------------------------------------------------------------- /modules/andes-core/broker/etc/qpid-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/etc/qpid-server.conf -------------------------------------------------------------------------------- /modules/andes-core/broker/etc/qpid-server.conf.jpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/etc/qpid-server.conf.jpp -------------------------------------------------------------------------------- /modules/andes-core/broker/etc/qpid.passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/etc/qpid.passwd -------------------------------------------------------------------------------- /modules/andes-core/broker/etc/virtualhosts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/etc/virtualhosts.xml -------------------------------------------------------------------------------- /modules/andes-core/broker/python-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/python-test.xml -------------------------------------------------------------------------------- /modules/andes-core/broker/scripts/resetAlerting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/scripts/resetAlerting.sh -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/grammar/SelectorParser.jj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/grammar/SelectorParser.jj -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/log4j.properties -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/dna/mqtt/commons/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/dna/mqtt/commons/Constants.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/dna/mqtt/moquette/MQTTException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/dna/mqtt/moquette/MQTTException.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/dna/mqtt/moquette/proto/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/dna/mqtt/moquette/proto/Utils.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/dna/mqtt/moquette/server/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/dna/mqtt/moquette/server/Constants.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/dna/mqtt/moquette/server/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/dna/mqtt/moquette/server/Server.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/dna/mqtt/wso2/AndesMQTTBridge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/dna/mqtt/wso2/AndesMQTTBridge.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/dna/mqtt/wso2/MQTTPingRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/dna/mqtt/wso2/MQTTPingRequest.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/dna/mqtt/wso2/QOSLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/dna/mqtt/wso2/QOSLevel.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/dna/mqtt/wso2/Subscribers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/dna/mqtt/wso2/Subscribers.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/amqp/AMQPDeliveryRule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/amqp/AMQPDeliveryRule.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/amqp/AMQPObjectStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/amqp/AMQPObjectStore.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/amqp/AMQPUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/amqp/AMQPUtils.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/amqp/AmqpNoLocalRule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/amqp/AmqpNoLocalRule.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/amqp/QpidAndesBridge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/amqp/QpidAndesBridge.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/amqp/QpidStoredMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/amqp/QpidStoredMessage.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/Andes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/Andes.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesAckData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesAckData.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesAckEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesAckEvent.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesBinding.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesChannel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesChannel.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesConstants.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesContent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesContent.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesContext.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesException.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesKernelBoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesKernelBoot.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesMessage.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesMessagePart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesMessagePart.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/AndesUtils.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/DestinationType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/DestinationType.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/DtxStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/DtxStore.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/MessageFlusher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/MessageFlusher.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/MessageHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/MessageHandler.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/MessageStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/MessageStatus.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/MessageStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/MessageStore.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/MessagingEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/MessagingEngine.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/ProtocolMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/ProtocolMessage.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/ProtocolType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/ProtocolType.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/RetainedContent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/RetainedContent.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/TopicParserUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/TopicParserUtil.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/dtx/DtxBranch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/dtx/DtxBranch.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/dtx/DtxRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/dtx/DtxRegistry.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/slot/Slot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/slot/Slot.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/slot/SlotCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/slot/SlotCreator.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/slot/SlotState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/kernel/slot/SlotState.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/MQTTException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/MQTTException.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/MQTTMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/MQTTMessage.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/MQTTMessageContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/MQTTMessageContext.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/MQTTSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/MQTTSubscription.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/MQTTopicManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/MQTTopicManager.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/MQTTopics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/MQTTopics.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/utils/MQTTUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/mqtt/utils/MQTTUtils.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/CompletionCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/CompletionCode.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/ManagementExchange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/ManagementExchange.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFClass.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFCommand.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFCommandDecoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFCommandDecoder.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFCommandHeader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFCommandHeader.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFEventClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFEventClass.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFEventCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFEventCommand.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFEventSeverity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFEventSeverity.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFGetQueryCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFGetQueryCommand.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFMessage.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFMethod.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFMethodInvocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFMethodInvocation.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFObject.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFObjectClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFObjectClass.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFOperation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFOperation.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFPackage.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFProperty.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFService.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFStatistic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFStatistic.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/qmf/QMFType.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/AMQChannel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/AMQChannel.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/Broker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/Broker.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/BrokerOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/BrokerOptions.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/Main.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/binding/Binding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/binding/Binding.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/logging/LogActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/logging/LogActor.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/plugins/Plugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/plugins/Plugin.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/queue/AMQQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/queue/AMQQueue.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/queue/BaseQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/queue/BaseQueue.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/queue/Filterable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/queue/Filterable.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/queue/QueueEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/queue/QueueEntry.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/security/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/security/Result.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/state/AMQState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/state/AMQState.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/server/txn/DtxException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/server/txn/DtxException.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/store/HealthAwareStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/store/HealthAwareStore.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/store/StoredAMQPMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/store/StoredAMQPMessage.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/task/Task.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/task/Task.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/task/TaskHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/task/TaskHolder.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/task/TaskProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/task/TaskProcessor.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/thrift/MBThriftClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/thrift/MBThriftClient.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/thrift/MBThriftServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/thrift/MBThriftServer.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/tools/security/Passwd.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/tools/security/Passwd.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/java/org/wso2/andes/tools/utils/Console.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/java/org/wso2/andes/tools/utils/Console.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/main/resources/slot.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/main/resources/slot.thrift -------------------------------------------------------------------------------- /modules/andes-core/broker/src/test/java/org/wso2/andes/server/MainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/test/java/org/wso2/andes/server/MainTest.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/test/java/org/wso2/andes/server/queue/AckTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/test/java/org/wso2/andes/server/queue/AckTest.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/test/java/org/wso2/andes/server/txn/MockAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/test/java/org/wso2/andes/server/txn/MockAction.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/test/java/org/wso2/andes/util/MockChannel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/test/java/org/wso2/andes/util/MockChannel.java -------------------------------------------------------------------------------- /modules/andes-core/broker/src/xsl/qmf.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/broker/src/xsl/qmf.xsl -------------------------------------------------------------------------------- /modules/andes-core/build.deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/build.deps -------------------------------------------------------------------------------- /modules/andes-core/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/build.xml -------------------------------------------------------------------------------- /modules/andes-core/client/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/README.txt -------------------------------------------------------------------------------- /modules/andes-core/client/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/build.xml -------------------------------------------------------------------------------- /modules/andes-core/client/example/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/example/build.xml -------------------------------------------------------------------------------- /modules/andes-core/client/example/src/main/java/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/example/src/main/java/README.txt -------------------------------------------------------------------------------- /modules/andes-core/client/example/src/main/java/org/wso2/andes/example/Drain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/example/src/main/java/org/wso2/andes/example/Drain.java -------------------------------------------------------------------------------- /modules/andes-core/client/example/src/main/java/org/wso2/andes/example/Hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/example/src/main/java/org/wso2/andes/example/Hello.java -------------------------------------------------------------------------------- /modules/andes-core/client/example/src/main/java/org/wso2/andes/example/Spout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/example/src/main/java/org/wso2/andes/example/Spout.java -------------------------------------------------------------------------------- /modules/andes-core/client/example/src/main/java/runSample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/example/src/main/java/runSample.sh -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/grammar/SelectorParser.jj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/grammar/SelectorParser.jj -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/client.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/client.bnd -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/client.log4j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/client.log4j -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/XaJmsSession.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/XaJmsSession.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQBrokerDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQBrokerDetails.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQConnection.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQConnectionURL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQConnectionURL.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQDestination.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQDestination.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQQueue.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQQueueBrowser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQQueueBrowser.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQSession.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQSession.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQSession_0_10.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQSession_0_10.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQSession_0_8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQSession_0_8.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQTopic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/AMQTopic.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/Closeable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/Closeable.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/DelayedObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/DelayedObject.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/JMSAMQException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/JMSAMQException.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/SSLConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/SSLConfiguration.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/XAConnectionImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/XAConnectionImpl.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/XAResource_0_10.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/XAResource_0_10.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/XAResource_0_9_1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/XAResource_0_9_1.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/XASession_0_10.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/XASession_0_10.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/XASession_9_1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/XASession_9_1.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/state/AMQState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/state/AMQState.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/client/url/URLParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/client/url/URLParser.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/collections/KeyValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/collections/KeyValue.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/filter/BinaryExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/filter/BinaryExpression.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/filter/Expression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/filter/Expression.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/filter/LogicExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/filter/LogicExpression.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/filter/MessageFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/filter/MessageFilter.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/filter/UnaryExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/filter/UnaryExpression.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jms/BrokerDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jms/BrokerDetails.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jms/Connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jms/Connection.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jms/ConnectionListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jms/ConnectionListener.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jms/ConnectionURL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jms/ConnectionURL.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jms/FailoverPolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jms/FailoverPolicy.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jms/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jms/Message.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jms/MessageConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jms/MessageConsumer.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jms/MessageProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jms/MessageProducer.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jms/Session.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jms/Session.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jms/TopicSubscriber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jms/TopicSubscriber.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jms/failover/NoFailover.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jms/failover/NoFailover.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jndi/Example.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jndi/Example.properties -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jndi/NameParserImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jndi/NameParserImpl.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jndi/ReadOnlyContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jndi/ReadOnlyContext.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/jndi/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/jndi/Utils.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/naming/ReadOnlyContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/naming/ReadOnlyContext.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/main/java/org/wso2/andes/naming/jndi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/main/java/org/wso2/andes/naming/jndi.properties -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/IBMPerfTest/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/IBMPerfTest/README.txt -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/cluster/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/cluster/Client.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/codec/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/codec/Client.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/codec/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/codec/Server.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/config/Connector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/config/Connector.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/headers/Listener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/headers/Listener.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/headers/Publisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/headers/Publisher.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/mina/AcceptorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/mina/AcceptorTest.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/mina/WriterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/mina/WriterTest.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/topic/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/topic/Config.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/topic/Listener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/topic/Listener.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/topic/Publisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/topic/Publisher.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/transacted/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/transacted/Config.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/transacted/Ping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/transacted/Ping.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/transacted/Pong.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/transacted/Pong.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/transacted/Relay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/transacted/Relay.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/old_test/java/org/apache/qpid/transacted/Start.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/old_test/java/org/apache/qpid/transacted/Start.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/test/java/org/wso2/andes/client/AMQQueueTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/test/java/org/wso2/andes/client/AMQQueueTest.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/test/java/org/wso2/andes/jms/FailoverPolicyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/test/java/org/wso2/andes/jms/FailoverPolicyTest.java -------------------------------------------------------------------------------- /modules/andes-core/client/src/test/java/org/wso2/andes/unit/tests.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/src/test/java/org/wso2/andes/unit/tests.properties -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/IBM-JNDI-Setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/IBM-JNDI-Setup.bat -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/IBM-JNDI-Setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/IBM-JNDI-Setup.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/IBM-Publisher.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/IBM-Publisher.bat -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/IBM-Publisher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/IBM-Publisher.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/IBM-PutGet.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/IBM-PutGet.bat -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/IBM-PutGet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/IBM-PutGet.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/IBM-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/IBM-README.txt -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/IBM-Receiver.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/IBM-Receiver.bat -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/IBM-Receiver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/IBM-Receiver.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/IBM-Sender.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/IBM-Sender.bat -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/IBM-Sender.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/IBM-Sender.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/IBM-Subscriber.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/IBM-Subscriber.bat -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/IBM-Subscriber.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/IBM-Subscriber.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/headersListener.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/headersListener.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/headersListenerGroup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/headersListenerGroup.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/headersPublisher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/headersPublisher.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/run_many.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/run_many.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/serviceProvidingClient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/serviceProvidingClient.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/serviceRequestingClient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/serviceRequestingClient.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/testService.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/testService.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/topicListener.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/topicListener.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/bin/topicPublisher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/bin/topicPublisher.sh -------------------------------------------------------------------------------- /modules/andes-core/client/test/etc/ApacheDS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/etc/ApacheDS.properties -------------------------------------------------------------------------------- /modules/andes-core/client/test/example_build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/client/test/example_build.xml -------------------------------------------------------------------------------- /modules/andes-core/common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common.xml -------------------------------------------------------------------------------- /modules/andes-core/common/Composite.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/Composite.tpl -------------------------------------------------------------------------------- /modules/andes-core/common/Constant.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/Constant.tpl -------------------------------------------------------------------------------- /modules/andes-core/common/Enum.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/Enum.tpl -------------------------------------------------------------------------------- /modules/andes-core/common/Invoker.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/Invoker.tpl -------------------------------------------------------------------------------- /modules/andes-core/common/MethodDelegate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/MethodDelegate.tpl -------------------------------------------------------------------------------- /modules/andes-core/common/Option.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/Option.tpl -------------------------------------------------------------------------------- /modules/andes-core/common/StructFactory.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/StructFactory.tpl -------------------------------------------------------------------------------- /modules/andes-core/common/Type.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/Type.tpl -------------------------------------------------------------------------------- /modules/andes-core/common/bin/qpid-jaddr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/bin/qpid-jaddr -------------------------------------------------------------------------------- /modules/andes-core/common/bin/qpid-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/bin/qpid-run -------------------------------------------------------------------------------- /modules/andes-core/common/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/build.xml -------------------------------------------------------------------------------- /modules/andes-core/common/codegen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/codegen -------------------------------------------------------------------------------- /modules/andes-core/common/etc/qpid-run.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/etc/qpid-run.conf -------------------------------------------------------------------------------- /modules/andes-core/common/etc/qpid-run.conf.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/etc/qpid-run.conf.dev -------------------------------------------------------------------------------- /modules/andes-core/common/genutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/genutil.py -------------------------------------------------------------------------------- /modules/andes-core/common/protocol-version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/protocol-version.xml -------------------------------------------------------------------------------- /modules/andes-core/common/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/readme.txt -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/common.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/common.bnd -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/AMQChannelException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/AMQChannelException.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/AMQConnectionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/AMQConnectionException.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/AMQException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/AMQException.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/AMQInternalException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/AMQInternalException.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/AMQProtocolException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/AMQProtocolException.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/AMQSecurityException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/AMQSecurityException.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/AMQStoreException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/AMQStoreException.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/AMQTimeoutException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/AMQTimeoutException.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/AMQUndeliveredException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/AMQUndeliveredException.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/AMQUnknownExchangeType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/AMQUnknownExchangeType.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/ConsoleOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/ConsoleOutput.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/QpidConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/QpidConfig.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/SerialException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/SerialException.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/api/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/api/Message.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/codec/AMQCodecFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/codec/AMQCodecFactory.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/codec/AMQDecoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/codec/AMQDecoder.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/codec/AMQEncoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/codec/AMQEncoder.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/common/AMQPFilterTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/common/AMQPFilterTypes.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/common/ClientProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/common/ClientProperties.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/common/Closeable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/common/Closeable.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/common/QpidProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/common/QpidProperties.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/configuration/Accessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/configuration/Accessor.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/configuration/Validator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/configuration/Validator.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/dtx/XidImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/dtx/XidImpl.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQBody.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQDataBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQDataBlock.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQFrame.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQMethodBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQMethodBody.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQShortString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQShortString.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQType.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQTypeMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQTypeMap.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQTypedValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/AMQTypedValue.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/BodyFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/BodyFactory.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/Content.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/Content.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/ContentBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/ContentBody.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/EncodingUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/EncodingUtils.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/FieldTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/FieldTable.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/framing/HeartbeatBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/framing/HeartbeatBody.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/messaging/Address.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/messaging/Address.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/JAddr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/JAddr.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/LexError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/LexError.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/Lexer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/Lexer.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/Lexicon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/Lexicon.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/LineInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/LineInfo.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/Parser.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/PyPrint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/PyPrint.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/Token.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/Token.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/pool/AndesExecuter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/pool/AndesExecuter.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/pool/Job.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/pool/Job.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/pool/ReadWriteJobQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/pool/ReadWriteJobQueue.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/pool/ReadWriteRunnable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/pool/ReadWriteRunnable.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/protocol/AMQConstant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/protocol/AMQConstant.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/protocol/AMQMethodEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/protocol/AMQMethodEvent.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/protocol/ProtocolEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/protocol/ProtocolEngine.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/ssl/SSLContextFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/ssl/SSLContextFactory.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/thread/ThreadFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/thread/ThreadFactory.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/thread/Threading.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/thread/Threading.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/Binary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/Binary.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/Binding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/Binding.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/Connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/Connection.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/Field.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/Field.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/Future.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/Future.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/Header.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/Header.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/Method.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/Method.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/OpenException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/OpenException.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/ProtocolError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/ProtocolError.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/ProtocolEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/ProtocolEvent.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/Range.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/Range.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/RangeSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/RangeSet.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/Receiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/Receiver.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/Sender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/Sender.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/Session.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/Session.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/Struct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/Struct.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/XaStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/XaStatus.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/codec/Decoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/codec/Decoder.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/codec/Encoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/codec/Encoder.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/network/Frame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/network/Frame.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/util/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/util/Logger.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/transport/util/Waiter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/transport/util/Waiter.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/url/AMQBindingURL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/url/AMQBindingURL.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/url/BindingURL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/url/BindingURL.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/url/BindingURLParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/url/BindingURLParser.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/url/URLHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/url/URLHelper.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/url/URLSyntaxException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/url/URLSyntaxException.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/util/CommandLineParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/util/CommandLineParser.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/util/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/util/FileUtils.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/util/MessageQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/util/MessageQueue.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/util/NameUUIDGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/util/NameUUIDGen.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/util/NetMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/util/NetMatcher.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/util/RandomUUIDGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/util/RandomUUIDGen.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/util/Serial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/util/Serial.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/util/Strings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/util/Strings.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/util/UUIDGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/util/UUIDGen.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/main/java/org/wso2/andes/util/UUIDs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/main/java/org/wso2/andes/util/UUIDs.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/test/java/org/wso2/andes/AMQExceptionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/test/java/org/wso2/andes/AMQExceptionTest.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/test/java/org/wso2/andes/codec/AMQDecoderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/test/java/org/wso2/andes/codec/AMQDecoderTest.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/test/java/org/wso2/andes/session/TestSession.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/test/java/org/wso2/andes/session/TestSession.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/test/java/org/wso2/andes/transport/GenTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/test/java/org/wso2/andes/transport/GenTest.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/test/java/org/wso2/andes/transport/MockSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/test/java/org/wso2/andes/transport/MockSender.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/test/java/org/wso2/andes/util/FileUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/test/java/org/wso2/andes/util/FileUtilsTest.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/test/java/org/wso2/andes/util/SerialTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/src/test/java/org/wso2/andes/util/SerialTest.java -------------------------------------------------------------------------------- /modules/andes-core/common/src/test/java/org/wso2/andes/util/default.properties: -------------------------------------------------------------------------------- 1 | # Used by FileUtilsTests 2 | src=default.properties -------------------------------------------------------------------------------- /modules/andes-core/common/src/test/java/org/wso2/andes/util/mydefaults.properties: -------------------------------------------------------------------------------- 1 | # Used by FileUtilsTests 2 | src=mydefaults -------------------------------------------------------------------------------- /modules/andes-core/common/templates/method/MethodBodyInterface.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/templates/method/MethodBodyInterface.vm -------------------------------------------------------------------------------- /modules/andes-core/common/templates/method/version/MethodBodyClass.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/templates/method/version/MethodBodyClass.vm -------------------------------------------------------------------------------- /modules/andes-core/common/templates/model/ClientMethodDispatcherInterface.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/templates/model/ClientMethodDispatcherInterface.vm -------------------------------------------------------------------------------- /modules/andes-core/common/templates/model/MethodDispatcherInterface.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/templates/model/MethodDispatcherInterface.vm -------------------------------------------------------------------------------- /modules/andes-core/common/templates/model/MethodRegistryClass.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/templates/model/MethodRegistryClass.vm -------------------------------------------------------------------------------- /modules/andes-core/common/templates/model/ProtocolVersionListClass.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/templates/model/ProtocolVersionListClass.vm -------------------------------------------------------------------------------- /modules/andes-core/common/templates/model/ServerMethodDispatcherInterface.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/templates/model/ServerMethodDispatcherInterface.vm -------------------------------------------------------------------------------- /modules/andes-core/common/templates/model/version/AmqpConstantsClass.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/templates/model/version/AmqpConstantsClass.vm -------------------------------------------------------------------------------- /modules/andes-core/common/templates/model/version/MethodDispatcherInterface.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/templates/model/version/MethodDispatcherInterface.vm -------------------------------------------------------------------------------- /modules/andes-core/common/templates/model/version/MethodRegistryClass.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/templates/model/version/MethodRegistryClass.vm -------------------------------------------------------------------------------- /modules/andes-core/common/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/common/templating.py -------------------------------------------------------------------------------- /modules/andes-core/doc/AMQBlazeDetailedDesign.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/AMQBlazeDetailedDesign.vsd -------------------------------------------------------------------------------- /modules/andes-core/doc/FramingClassDiagram.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/FramingClassDiagram.vsd -------------------------------------------------------------------------------- /modules/andes-core/doc/Qpid-architecture.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/Qpid-architecture.dia -------------------------------------------------------------------------------- /modules/andes-core/doc/broker-0.5-network.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/broker-0.5-network.dia -------------------------------------------------------------------------------- /modules/andes-core/doc/broker-0.N-network-phase-1.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/broker-0.N-network-phase-1.dia -------------------------------------------------------------------------------- /modules/andes-core/doc/broker-0.N-state.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/broker-0.N-state.dia -------------------------------------------------------------------------------- /modules/andes-core/doc/broker-overview.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/broker-overview.dia -------------------------------------------------------------------------------- /modules/andes-core/doc/broker-priority-queue-subscription.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/broker-priority-queue-subscription.dia -------------------------------------------------------------------------------- /modules/andes-core/doc/broker-queue-subscription.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/broker-queue-subscription.dia -------------------------------------------------------------------------------- /modules/andes-core/doc/client-0.5-connection-creation.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/client-0.5-connection-creation.dia -------------------------------------------------------------------------------- /modules/andes-core/doc/client-0.5-network-processing.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/client-0.5-network-processing.dia -------------------------------------------------------------------------------- /modules/andes-core/doc/client-0.N-network-processing.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/client-0.N-network-processing.dia -------------------------------------------------------------------------------- /modules/andes-core/doc/common-0.N-network.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/common-0.N-network.dia -------------------------------------------------------------------------------- /modules/andes-core/doc/network-driver-protocol-engine-sequence.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/network-driver-protocol-engine-sequence.dia -------------------------------------------------------------------------------- /modules/andes-core/doc/noddy-network-blocks.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/doc/noddy-network-blocks.dia -------------------------------------------------------------------------------- /modules/andes-core/etc/code-style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/etc/code-style.xml -------------------------------------------------------------------------------- /modules/andes-core/etc/coding_standards.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/etc/coding_standards.xml -------------------------------------------------------------------------------- /modules/andes-core/etc/license_header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/etc/license_header.txt -------------------------------------------------------------------------------- /modules/andes-core/etc/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/etc/log4j.xml -------------------------------------------------------------------------------- /modules/andes-core/genpom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/genpom -------------------------------------------------------------------------------- /modules/andes-core/integrationtests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/integrationtests/README.txt -------------------------------------------------------------------------------- /modules/andes-core/integrationtests/bin/interoptests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/integrationtests/bin/interoptests.py -------------------------------------------------------------------------------- /modules/andes-core/integrationtests/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/integrationtests/build.xml -------------------------------------------------------------------------------- /modules/andes-core/integrationtests/docs/RunningSustainedTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/integrationtests/docs/RunningSustainedTests.txt -------------------------------------------------------------------------------- /modules/andes-core/integrationtests/jar-with-dependencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/integrationtests/jar-with-dependencies.xml -------------------------------------------------------------------------------- /modules/andes-core/integrationtests/src/resources/sustained-log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/integrationtests/src/resources/sustained-log4j.xml -------------------------------------------------------------------------------- /modules/andes-core/ivy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/ivy.xml -------------------------------------------------------------------------------- /modules/andes-core/ivysettings-nexus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/ivysettings-nexus.xml -------------------------------------------------------------------------------- /modules/andes-core/junit-toolkit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/junit-toolkit/build.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/cobertura/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/cobertura/README.txt -------------------------------------------------------------------------------- /modules/andes-core/lib/findbugs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/findbugs/README.txt -------------------------------------------------------------------------------- /modules/andes-core/lib/ivy/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/ivy/README.txt -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/commons-beanutils-core-1.8.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/commons-beanutils-core-1.8.0.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/commons-cli-1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/commons-cli-1.0.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/commons-codec-1.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/commons-codec-1.12.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/commons-collections-3.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/commons-collections-3.2.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/commons-configuration-1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/commons-configuration-1.6.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/commons-digester-1.8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/commons-digester-1.8.1.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/commons-lang-2.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/commons-lang-2.2.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/commons-logging-1.0.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/commons-logging-1.0.4.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/commons-pool-1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/commons-pool-1.4.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/derby-10.6.1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/derby-10.6.1.0.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/geronimo-jms_1.1_spec-1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/geronimo-jms_1.1_spec-1.0.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/junit-3.8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/junit-3.8.1.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/log4j-1.2.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/log4j-1.2.12.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/mina-core-1.1.7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/mina-core-1.1.7.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/mina-filter-ssl-1.1.7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/mina-filter-ssl-1.1.7.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/org.apache.felix.framework-2.0.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/org.apache.felix.framework-2.0.5.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/org.osgi.core-1.0.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/org.osgi.core-1.0.0.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/slf4j-api-1.6.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/slf4j-api-1.6.1.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/slf4j-log4j12-1.6.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/slf4j-log4j12-1.6.1.xml -------------------------------------------------------------------------------- /modules/andes-core/lib/poms/xalan-2.7.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/lib/poms/xalan-2.7.0.xml -------------------------------------------------------------------------------- /modules/andes-core/management/common/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/common/build.xml -------------------------------------------------------------------------------- /modules/andes-core/management/common/src/main/java/management-common.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/common/src/main/java/management-common.bnd -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/build-release-common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/build-release-common.properties -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/build-release-macosx.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/build-release-macosx.properties -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/build-release-macosx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/build-release-macosx.xml -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/build-release.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/build-release.xml -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/build.xml -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/add.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/back.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/configuration_management.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/configuration_management.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/delete.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/failure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/failure.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/icon_ClosedFolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/icon_ClosedFolder.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/icon_OpenFolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/icon_OpenFolder.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/logging_management.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/logging_management.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/mbean_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/mbean_view.png -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/notifications.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/notifications.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/qpidConnections.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/qpidConnections.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/qpidmc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/qpidmc.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/qpidmc16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/qpidmc16.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/qpidmc32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/qpidmc32.bmp -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/qpidmc32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/qpidmc32.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/reconnect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/reconnect.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/refresh.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/server_information.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/server_information.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/splash.bmp -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/stop.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/success.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/user_management.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/user_management.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/icons/virtualhost_manager.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/icons/virtualhost_manager.gif -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/plugin.properties -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/plugin.xml -------------------------------------------------------------------------------- /modules/andes-core/management/eclipse-plugin/src/main/resources/.eclipseproduct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/eclipse-plugin/src/main/resources/.eclipseproduct -------------------------------------------------------------------------------- /modules/andes-core/management/example/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/management/example/build.xml -------------------------------------------------------------------------------- /modules/andes-core/maven-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/maven-settings.xml -------------------------------------------------------------------------------- /modules/andes-core/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/module.xml -------------------------------------------------------------------------------- /modules/andes-core/perftests/RunningPerformanceTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/RunningPerformanceTests.txt -------------------------------------------------------------------------------- /modules/andes-core/perftests/bin/monitoring/monitor-broker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/bin/monitoring/monitor-broker.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/bin/monitoring/runTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/bin/monitoring/runTests.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/bin/monitoring/stop-monitored-broker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/bin/monitoring/stop-monitored-broker.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/bin/processing/process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/bin/processing/process.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/bin/processing/processAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/bin/processing/processAll.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/bin/processing/processTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/bin/processing/processTests.py -------------------------------------------------------------------------------- /modules/andes-core/perftests/bin/run_many.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/bin/run_many.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/bin/topicListener.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/bin/topicListener.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/bin/topicPublisher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/bin/topicPublisher.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/build.xml -------------------------------------------------------------------------------- /modules/andes-core/perftests/dist-zip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/dist-zip.xml -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/jndi/activemq.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/jndi/activemq.properties -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/jndi/failovertest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/jndi/failovertest.properties -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/jndi/perftests.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/jndi/perftests.properties -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/jndi/swiftmq.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/jndi/swiftmq.properties -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/perftests.log4j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/perftests.log4j -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/CTQ-Qpid-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/CTQ-Qpid-1.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/CTQ-Qpid-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/CTQ-Qpid-2.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/CTQ-Qpid-3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/CTQ-Qpid-3.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/CTQ-Qpid-4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/CTQ-Qpid-4.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/CTQ-Qpid-5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/CTQ-Qpid-5.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/CTQ-Qpid-6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/CTQ-Qpid-6.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/Connections.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/Connections.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/JobQueue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/JobQueue.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/Latency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/Latency.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/MessageSize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/MessageSize.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/PT-Qpid-13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/PT-Qpid-13.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/PT-Qpid-14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/PT-Qpid-14.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/Reliability.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/Reliability.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/RunAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/RunAll.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/RunCore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/RunCore.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/Test-ActiveMQ.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/Test-ActiveMQ.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/Test-SwiftMQ.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/Test-SwiftMQ.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/Throughput.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/Throughput.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/drainBroker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/drainBroker.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/extractResults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/extractResults.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/extractThroughputResults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/extractThroughputResults.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/fillBroker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/fillBroker.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/sendAndWaitClient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/sendAndWaitClient.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/etc/scripts/testWithPreFill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/etc/scripts/testWithPreFill.sh -------------------------------------------------------------------------------- /modules/andes-core/perftests/generate-scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/generate-scripts -------------------------------------------------------------------------------- /modules/andes-core/perftests/jar-with-dependencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/jar-with-dependencies.xml -------------------------------------------------------------------------------- /modules/andes-core/perftests/scripts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/perftests/scripts.xml -------------------------------------------------------------------------------- /modules/andes-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/pom.xml -------------------------------------------------------------------------------- /modules/andes-core/release-docs/RELEASE_NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/release-docs/RELEASE_NOTES.txt -------------------------------------------------------------------------------- /modules/andes-core/resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/resources/LICENSE -------------------------------------------------------------------------------- /modules/andes-core/resources/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/resources/NOTICE -------------------------------------------------------------------------------- /modules/andes-core/resources/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/resources/README.txt -------------------------------------------------------------------------------- /modules/andes-core/systests/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/build.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/bin/fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/bin/fail.py -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/bin/testclients.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/bin/testclients.sh -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/config-systests-aclv2-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/config-systests-aclv2-settings.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/config-systests-aclv2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/config-systests-aclv2.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/config-systests-derby-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/config-systests-derby-settings.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/config-systests-derby.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/config-systests-derby.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/config-systests-firewall-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/config-systests-firewall-2.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/config-systests-firewall-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/config-systests-firewall-3.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/config-systests-firewall-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/config-systests-firewall-settings.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/config-systests-firewall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/config-systests-firewall.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/config-systests-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/config-systests-settings.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/config-systests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/config-systests.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/global-default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/global-default.txt -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/test-default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/test-default.txt -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/test-externalacljmx-deleteexchangefailure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/test-externalacljmx-deleteexchangefailure.txt -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/test-externalacljmx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/test-externalacljmx.txt -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/test-logging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/test-logging.txt -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/test2-default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/test2-default.txt -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/virtualhosts-systests-aclv2-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/virtualhosts-systests-aclv2-settings.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/virtualhosts-systests-aclv2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/virtualhosts-systests-aclv2.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/virtualhosts-systests-derby-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/virtualhosts-systests-derby-settings.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/virtualhosts-systests-derby.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/virtualhosts-systests-derby.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/virtualhosts-systests-firewall-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/virtualhosts-systests-firewall-2.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/virtualhosts-systests-firewall-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/virtualhosts-systests-firewall-3.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/virtualhosts-systests-firewall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/virtualhosts-systests-firewall.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/etc/virtualhosts-systests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/etc/virtualhosts-systests.xml -------------------------------------------------------------------------------- /modules/andes-core/systests/src/main/java/org/wso2/andes/client/ssl/SSLTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/src/main/java/org/wso2/andes/client/ssl/SSLTest.java -------------------------------------------------------------------------------- /modules/andes-core/systests/src/main/java/org/wso2/andes/systest/TopicTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/src/main/java/org/wso2/andes/systest/TopicTest.java -------------------------------------------------------------------------------- /modules/andes-core/systests/src/main/java/org/wso2/andes/test/unit/message/UTF8En: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/src/main/java/org/wso2/andes/test/unit/message/UTF8En -------------------------------------------------------------------------------- /modules/andes-core/systests/src/main/java/org/wso2/andes/test/unit/message/UTF8Jp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/src/main/java/org/wso2/andes/test/unit/message/UTF8Jp -------------------------------------------------------------------------------- /modules/andes-core/systests/src/main/java/org/wso2/andes/util/LogMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/src/main/java/org/wso2/andes/util/LogMonitor.java -------------------------------------------------------------------------------- /modules/andes-core/systests/src/main/java/org/wso2/andes/util/LogMonitorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/src/main/java/org/wso2/andes/util/LogMonitorTest.java -------------------------------------------------------------------------------- /modules/andes-core/systests/src/main/java/systests.log4j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/systests/src/main/java/systests.log4j -------------------------------------------------------------------------------- /modules/andes-core/tasks/src/org/apache/qpid/tasks/BaseTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tasks/src/org/apache/qpid/tasks/BaseTask.java -------------------------------------------------------------------------------- /modules/andes-core/tasks/src/org/apache/qpid/tasks/Foreach.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tasks/src/org/apache/qpid/tasks/Foreach.java -------------------------------------------------------------------------------- /modules/andes-core/tasks/src/org/apache/qpid/tasks/Map.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tasks/src/org/apache/qpid/tasks/Map.java -------------------------------------------------------------------------------- /modules/andes-core/tasks/src/org/apache/qpid/tasks/PropertyMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tasks/src/org/apache/qpid/tasks/PropertyMapper.java -------------------------------------------------------------------------------- /modules/andes-core/tasks/src/org/apache/qpid/tasks/Require.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tasks/src/org/apache/qpid/tasks/Require.java -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/CPPExcludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/CPPExcludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/CPPNoPrefetchExcludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/CPPNoPrefetchExcludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/CPPPrefetchExcludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/CPPPrefetchExcludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/CPPTransientExcludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/CPPTransientExcludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/Excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/Excludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/Java010Excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/Java010Excludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/JavaExcludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/JavaExcludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/JavaPersistentExcludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/JavaPersistentExcludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/JavaPre010Excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/JavaPre010Excludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/JavaTransientExcludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/JavaTransientExcludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/XAExcludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/XAExcludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/clean-dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/clean-dir -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/cpp.async.excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/cpp.async.excludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/cpp.async.testprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/cpp.async.testprofile -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/cpp.cluster.testprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/cpp.cluster.testprofile -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/cpp.excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/cpp.excludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/cpp.noprefetch.testprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/cpp.noprefetch.testprofile -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/cpp.ssl.excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/cpp.ssl.excludes -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/cpp.ssl.testprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/cpp.ssl.testprofile -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/cpp.testprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/cpp.testprofile -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/java-dby-spawn.0-10.testprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/java-dby-spawn.0-10.testprofile -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/java-dby-spawn.0-9-1.testprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/java-dby-spawn.0-9-1.testprofile -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/java-dby.0-10.testprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/java-dby.0-10.testprofile -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/java-dby.0-9-1.testprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/java-dby.0-9-1.testprofile -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/java-mms-spawn.0-10.testprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/java-mms-spawn.0-10.testprofile -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/java-mms-spawn.0-9-1.testprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/java-mms-spawn.0-9-1.testprofile -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/java-mms.0-10.testprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/java-mms.0-10.testprofile -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/java-mms.0-9-1.testprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/java-mms.0-9-1.testprofile -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/kill-broker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/kill-broker -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/log4j-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/log4j-test.xml -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/start-broker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/start-broker -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test-provider.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test-provider.properties -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/CA_db/cert8.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/CA_db/cert8.db -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/CA_db/key3.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/CA_db/key3.db -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/CA_db/rootca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/CA_db/rootca.crt -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/CA_db/secmod.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/CA_db/secmod.db -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/app1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/app1.crt -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/app1.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/app1.req -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/app2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/app2.crt -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/app2.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/app2.req -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/certstore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/certstore.jks -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/keystore.jks -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/pfile: -------------------------------------------------------------------------------- 1 | password 2 | -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/server_db/cert8.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/server_db/cert8.db -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/server_db/key3.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/server_db/key3.db -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/server_db/secmod.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/server_db/secmod.db -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/server_db/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/server_db/server.crt -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/test_resources/ssl/server_db/server.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/test_resources/ssl/server_db/server.req -------------------------------------------------------------------------------- /modules/andes-core/test-profiles/testprofile.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/test-profiles/testprofile.defaults -------------------------------------------------------------------------------- /modules/andes-core/testkit/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/testkit/README.txt -------------------------------------------------------------------------------- /modules/andes-core/testkit/bin/run_soak_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/testkit/bin/run_soak_client.sh -------------------------------------------------------------------------------- /modules/andes-core/testkit/bin/soak_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/testkit/bin/soak_report.sh -------------------------------------------------------------------------------- /modules/andes-core/testkit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/testkit/build.xml -------------------------------------------------------------------------------- /modules/andes-core/tools/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/README.txt -------------------------------------------------------------------------------- /modules/andes-core/tools/bin/Profile-run-from-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/bin/Profile-run-from-source -------------------------------------------------------------------------------- /modules/andes-core/tools/bin/check-qpid-java-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/bin/check-qpid-java-env -------------------------------------------------------------------------------- /modules/andes-core/tools/bin/perf-report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/bin/perf-report -------------------------------------------------------------------------------- /modules/andes-core/tools/bin/qpid-bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/bin/qpid-bench -------------------------------------------------------------------------------- /modules/andes-core/tools/bin/qpid-python-testkit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/bin/qpid-python-testkit -------------------------------------------------------------------------------- /modules/andes-core/tools/bin/run-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/bin/run-pub -------------------------------------------------------------------------------- /modules/andes-core/tools/bin/run-sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/bin/run-sub -------------------------------------------------------------------------------- /modules/andes-core/tools/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/build.xml -------------------------------------------------------------------------------- /modules/andes-core/tools/etc/test.log4j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/etc/test.log4j -------------------------------------------------------------------------------- /modules/andes-core/tools/src/main/java/org/wso2/andes/testkit/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/src/main/java/org/wso2/andes/testkit/Client.java -------------------------------------------------------------------------------- /modules/andes-core/tools/src/main/java/org/wso2/andes/testkit/ErrorHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/src/main/java/org/wso2/andes/testkit/ErrorHandler.java -------------------------------------------------------------------------------- /modules/andes-core/tools/src/main/java/org/wso2/andes/testkit/Receiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/src/main/java/org/wso2/andes/testkit/Receiver.java -------------------------------------------------------------------------------- /modules/andes-core/tools/src/main/java/org/wso2/andes/testkit/Sender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/src/main/java/org/wso2/andes/testkit/Sender.java -------------------------------------------------------------------------------- /modules/andes-core/tools/src/main/java/org/wso2/andes/tools/Clock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/src/main/java/org/wso2/andes/tools/Clock.java -------------------------------------------------------------------------------- /modules/andes-core/tools/src/main/java/org/wso2/andes/tools/JNDICheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/src/main/java/org/wso2/andes/tools/JNDICheck.java -------------------------------------------------------------------------------- /modules/andes-core/tools/src/main/java/org/wso2/andes/tools/LatencyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/src/main/java/org/wso2/andes/tools/LatencyTest.java -------------------------------------------------------------------------------- /modules/andes-core/tools/src/main/java/org/wso2/andes/tools/MessageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/src/main/java/org/wso2/andes/tools/MessageFactory.java -------------------------------------------------------------------------------- /modules/andes-core/tools/src/main/java/org/wso2/andes/tools/PerfBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/src/main/java/org/wso2/andes/tools/PerfBase.java -------------------------------------------------------------------------------- /modules/andes-core/tools/src/main/java/org/wso2/andes/tools/PerfConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/src/main/java/org/wso2/andes/tools/PerfConsumer.java -------------------------------------------------------------------------------- /modules/andes-core/tools/src/main/java/org/wso2/andes/tools/PerfProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/src/main/java/org/wso2/andes/tools/PerfProducer.java -------------------------------------------------------------------------------- /modules/andes-core/tools/src/main/java/org/wso2/andes/tools/QpidBench.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/src/main/java/org/wso2/andes/tools/QpidBench.java -------------------------------------------------------------------------------- /modules/andes-core/tools/src/main/java/org/wso2/andes/tools/TestParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/tools/src/main/java/org/wso2/andes/tools/TestParams.java -------------------------------------------------------------------------------- /modules/andes-core/upload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/andes-core/upload.xml -------------------------------------------------------------------------------- /modules/gentools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/LICENSE -------------------------------------------------------------------------------- /modules/gentools/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/NOTICE -------------------------------------------------------------------------------- /modules/gentools/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/README.txt -------------------------------------------------------------------------------- /modules/gentools/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/build -------------------------------------------------------------------------------- /modules/gentools/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/build.xml -------------------------------------------------------------------------------- /modules/gentools/lib/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/gentools/lib/NOTICE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/gentools/lib/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/gentools/lib/velocity-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/lib/velocity-1.4.jar -------------------------------------------------------------------------------- /modules/gentools/lib/velocity-dep-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/lib/velocity-dep-1.4.jar -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpClass.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpClassMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpClassMap.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpConstant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpConstant.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpConstantSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpConstantSet.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpDomain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpDomain.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpDomainMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpDomainMap.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpDomainVersionMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpDomainVersionMap.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpField.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpFieldMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpFieldMap.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpFlagMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpFlagMap.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpMethod.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpMethodMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpMethodMap.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpModel.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpOrdinalFieldMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpOrdinalFieldMap.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpOrdinalVersionMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpOrdinalVersionMap.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpOverloadedParameterMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpOverloadedParameterMap.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpParseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpParseException.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpTemplateException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpTemplateException.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpTypeMappingException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpTypeMappingException.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpVersion.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/AmqpVersionSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/AmqpVersionSet.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/BitFieldGenerateMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/BitFieldGenerateMethod.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/CommandGenerateMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/CommandGenerateMethod.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/ConsolidatedField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/ConsolidatedField.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/CppGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/CppGenerator.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/DotnetGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/DotnetGenerator.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/GenerateMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/GenerateMethod.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/Generator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/Generator.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/JavaGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/JavaGenerator.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/LanguageConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/LanguageConverter.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/Main.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/MangledGenerateMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/MangledGenerateMethod.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/NodeAware.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/NodeAware.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/Printable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/Printable.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/SingleVersionClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/SingleVersionClass.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/SingleVersionField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/SingleVersionField.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/SingleVersionMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/SingleVersionMethod.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/SingleVersionModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/SingleVersionModel.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/TargetDirectoryException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/TargetDirectoryException.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/Utils.java -------------------------------------------------------------------------------- /modules/gentools/src/org/apache/qpid/gentools/VersionConsistencyCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/src/org/apache/qpid/gentools/VersionConsistencyCheck.java -------------------------------------------------------------------------------- /modules/gentools/templ.cpp/method/MethodBodyClass.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.cpp/method/MethodBodyClass.h.tmpl -------------------------------------------------------------------------------- /modules/gentools/templ.cpp/model/AMQP_ClientOperations.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.cpp/model/AMQP_ClientOperations.h.tmpl -------------------------------------------------------------------------------- /modules/gentools/templ.cpp/model/AMQP_ClientProxy.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.cpp/model/AMQP_ClientProxy.cpp.tmpl -------------------------------------------------------------------------------- /modules/gentools/templ.cpp/model/AMQP_ClientProxy.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.cpp/model/AMQP_ClientProxy.h.tmpl -------------------------------------------------------------------------------- /modules/gentools/templ.cpp/model/AMQP_Constants.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.cpp/model/AMQP_Constants.h.tmpl -------------------------------------------------------------------------------- /modules/gentools/templ.cpp/model/AMQP_HighestVersion.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.cpp/model/AMQP_HighestVersion.h.tmpl -------------------------------------------------------------------------------- /modules/gentools/templ.cpp/model/AMQP_MethodVersionMap.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.cpp/model/AMQP_MethodVersionMap.cpp.tmpl -------------------------------------------------------------------------------- /modules/gentools/templ.cpp/model/AMQP_MethodVersionMap.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.cpp/model/AMQP_MethodVersionMap.h.tmpl -------------------------------------------------------------------------------- /modules/gentools/templ.cpp/model/AMQP_ServerOperations.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.cpp/model/AMQP_ServerOperations.h.tmpl -------------------------------------------------------------------------------- /modules/gentools/templ.cpp/model/AMQP_ServerProxy.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.cpp/model/AMQP_ServerProxy.cpp.tmpl -------------------------------------------------------------------------------- /modules/gentools/templ.cpp/model/AMQP_ServerProxy.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.cpp/model/AMQP_ServerProxy.h.tmpl -------------------------------------------------------------------------------- /modules/gentools/templ.java/PropertyContentHeaderClass.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.java/PropertyContentHeaderClass.tmpl -------------------------------------------------------------------------------- /modules/gentools/templ.java/method/version/MethodBodyClass.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.java/method/version/MethodBodyClass.vm -------------------------------------------------------------------------------- /modules/gentools/templ.java/model/ProtocolVersionListClass.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.java/model/ProtocolVersionListClass.vm -------------------------------------------------------------------------------- /modules/gentools/templ.java/model/version/AmqpConstantsClass.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.java/model/version/AmqpConstantsClass.vm -------------------------------------------------------------------------------- /modules/gentools/templ.java/model/version/MethodRegistryClass.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/templ.java/model/version/MethodRegistryClass.vm -------------------------------------------------------------------------------- /modules/gentools/xml-src/amqp-0.10.test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/xml-src/amqp-0.10.test.xml -------------------------------------------------------------------------------- /modules/gentools/xml-src/amqp-0.8.test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/xml-src/amqp-0.8.test.xml -------------------------------------------------------------------------------- /modules/gentools/xml-src/amqp-0.9.test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/xml-src/amqp-0.9.test.xml -------------------------------------------------------------------------------- /modules/gentools/xml-src/cluster-0.9.test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/gentools/xml-src/cluster-0.9.test.xml -------------------------------------------------------------------------------- /modules/orbit/andes-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/orbit/andes-client/pom.xml -------------------------------------------------------------------------------- /modules/orbit/andes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/orbit/andes/pom.xml -------------------------------------------------------------------------------- /modules/orbit/andes/src/main/resources/qpidversion.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/orbit/andes/src/main/resources/qpidversion.properties -------------------------------------------------------------------------------- /modules/python/mllib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/python/mllib/__init__.py -------------------------------------------------------------------------------- /modules/python/mllib/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/python/mllib/dom.py -------------------------------------------------------------------------------- /modules/python/mllib/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/python/mllib/parsers.py -------------------------------------------------------------------------------- /modules/python/mllib/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/python/mllib/transforms.py -------------------------------------------------------------------------------- /modules/specs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/LICENSE -------------------------------------------------------------------------------- /modules/specs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/NOTICE -------------------------------------------------------------------------------- /modules/specs/amqp-dtx-preview.0-9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/amqp-dtx-preview.0-9.xml -------------------------------------------------------------------------------- /modules/specs/amqp-errata.0-9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/amqp-errata.0-9.xml -------------------------------------------------------------------------------- /modules/specs/amqp-nogen.0-9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/amqp-nogen.0-9.xml -------------------------------------------------------------------------------- /modules/specs/amqp.0-10-preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/amqp.0-10-preview.xml -------------------------------------------------------------------------------- /modules/specs/amqp.0-10-qpid-errata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/amqp.0-10-qpid-errata.xml -------------------------------------------------------------------------------- /modules/specs/amqp.0-10.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/amqp.0-10.dtd -------------------------------------------------------------------------------- /modules/specs/amqp.0-10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/amqp.0-10.xml -------------------------------------------------------------------------------- /modules/specs/amqp.0-8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/amqp.0-8.xml -------------------------------------------------------------------------------- /modules/specs/amqp.0-9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/amqp.0-9.xml -------------------------------------------------------------------------------- /modules/specs/amqp0-9-1.stripped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/amqp0-9-1.stripped.xml -------------------------------------------------------------------------------- /modules/specs/cluster.0-8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/cluster.0-8.xml -------------------------------------------------------------------------------- /modules/specs/management-schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/modules/specs/management-schema.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/pom.xml -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/andes/HEAD/pull_request_template.md --------------------------------------------------------------------------------