This is an automated email from the ASF dual-hosted git repository. ralaoui pushed a change to branch xep-0313 in repository https://gitbox.apache.org/repos/asf/mina-vysper.git.
discard 4a6f80b XEP-0313 Message Archive Management add 8915a59 Remove LocalDeliveryUtils in favor of StanzaBroker add 3e7d2b9 Remove LocalDeliveryUtils in favor of StanzaBroker add dcb2ca9 Extract InternalResourceRegistry interface from ResourceRegistry add b6a4d68 Rename StanzaReceivingSessionContext to InternalSessionContext add 6f73672 Limit access to XMPPServerConnectorRegistry add 7c9fff7 Allow to intercept the StanzaHandler execution new 43d9a6d XEP-0313 Message Archive Management This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (4a6f80b) \ N -- N -- N refs/heads/xep-0313 (43d9a6d) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../apache/vysper/mina/XmppIoHandlerAdapter.java | 12 +- .../vysper/stanzasession/StanzaSessionFactory.java | 1 + .../vysper/xmpp/delivery/LocalDeliveryUtils.java | 58 --------- .../vysper/xmpp/delivery/RecordingStanzaRelay.java | 4 +- .../vysper/xmpp/delivery/StanzaReceiverRelay.java | 31 +++-- .../apache/vysper/xmpp/delivery/StanzaRelay.java | 5 +- .../vysper/xmpp/delivery/StanzaRelayBroker.java | 4 +- .../delivery/failure/IgnoreFailureStrategy.java | 6 +- .../ReturnErrorToSenderFailureStrategy.java | 6 +- .../DeliveringExternalInboundStanzaRelay.java | 9 +- .../DeliveringInternalInboundStanzaRelay.java | 34 ++--- .../apache/vysper/xmpp/modules/DefaultModule.java | 7 + .../org/apache/vysper/xmpp/modules/Module.java | 3 + .../AbstractPresenceSpecializedHandler.java | 2 +- .../im/handler/PresenceAvailabilityHandler.java | 4 +- .../im/handler/PresenceSubscriptionHandler.java | 77 ++++++----- .../xep0220_server_dailback/DbResultHandler.java | 23 ++-- .../modules/roster/handler/RosterIQHandler.java | 30 +++-- .../vysper/xmpp/protocol/ProtocolWorker.java | 12 +- .../xmpp/protocol/QueuedStanzaProcessor.java | 14 +- .../vysper/xmpp/protocol/ResponseWriter.java | 16 +-- .../vysper/xmpp/protocol/SimpleStanzaBroker.java | 6 +- .../xmpp/protocol/SimpleStanzaHandlerExecutor.java | 9 +- .../SimpleStanzaHandlerInterceptorChain.java | 66 ++++++++++ .../xmpp/protocol/StanzaHandlerExecutor.java | 5 +- .../xmpp/protocol/StanzaHandlerInterceptor.java} | 12 +- .../protocol/StanzaHandlerInterceptorChain.java} | 13 +- .../vysper/xmpp/protocol/StanzaProcessor.java | 7 +- .../xmpp/protocol/StateAwareProtocolWorker.java | 6 +- .../worker/AbstractStateAwareProtocolWorker.java | 15 +-- .../worker/AuthenticatedProtocolWorker.java | 4 +- .../protocol/worker/EncryptedProtocolWorker.java | 4 +- .../worker/EncryptionStartedProtocolWorker.java | 4 +- .../protocol/worker/EndOrClosedProtocolWorker.java | 4 +- .../protocol/worker/InitiatedProtocolWorker.java | 4 +- .../protocol/worker/StartedProtocolWorker.java | 6 +- .../protocol/worker/UnconnectedProtocolWorker.java | 4 +- .../vysper/xmpp/server/AbstractSessionContext.java | 2 +- .../xmpp/server/DefaultServerRuntimeContext.java | 19 ++- ...text.java => InternalServerRuntimeContext.java} | 6 +- ...ionContext.java => InternalSessionContext.java} | 4 +- .../vysper/xmpp/server/ServerRuntimeContext.java | 15 +-- .../apache/vysper/xmpp/server/SessionContext.java | 1 - .../org/apache/vysper/xmpp/server/XMPPServer.java | 5 +- .../components/ComponentStanzaProcessor.java | 8 +- .../resourcebinding/DefaultResourceRegistry.java | 24 ++-- .../resourcebinding/InternalResourceRegistry.java} | 40 ++---- .../state/resourcebinding/ResourceRegistry.java | 11 +- .../xmpp/delivery/StanzaRelayBrokerTestCase.java | 7 +- ...ReturnErrorToSenderFailureStrategyTestCase.java | 6 +- ...liveringExternalInboundStanzaRelayTestCase.java | 10 +- ...eliveringInteralInboundStanzaRelayTestCase.java | 17 ++- .../im/handler/PresenceHandlerBaseTestCase.java | 8 +- .../PresenceSubRequestOutHandlerTestCase.java | 33 ++--- .../handler/DiscoInfoIQHandlerTestCase.java | 4 +- .../handler/ExtendedDiscoInfoTestCase.java | 4 +- .../SimpleStanzaHandlerInterceptorChainTest.java | 144 +++++++++++++++++++++ .../ComponentStanzaProcessorTestCase.java | 26 +--- .../vysper/xmpp/server/s2s/Server2Server.java | 3 +- .../resourcebinding/ResourceRegistryTestCase.java | 8 +- .../websockets/JettyXmppWebSocketTest.java | 5 +- .../websockets/TomcatXmppWebSocketTest.java | 5 +- .../modules/extension/xep0045_muc/MUCModule.java | 2 +- .../xep0045_muc/handler/MUCIqAdminHandler.java | 2 +- .../xep0045_muc/handler/MUCMessageHandler.java | 2 +- .../xep0045_muc/handler/MUCPresenceHandler.java | 2 +- .../SubscriberPayloadNotificationVisitor.java | 2 +- .../xmpp/extension/xep0124/BoshHandlerTest.java | 3 - 68 files changed, 553 insertions(+), 402 deletions(-) delete mode 100644 server/core/src/main/java/org/apache/vysper/xmpp/delivery/LocalDeliveryUtils.java create mode 100644 server/core/src/main/java/org/apache/vysper/xmpp/protocol/SimpleStanzaHandlerInterceptorChain.java copy server/{extensions/xep0313-mam/src/main/java/org/apache/vysper/xmpp/modules/extension/xep0313_mam/query/QueryHandler.java => core/src/main/java/org/apache/vysper/xmpp/protocol/StanzaHandlerInterceptor.java} (72%) copy server/{extensions/xep0313-mam/src/main/java/org/apache/vysper/xmpp/modules/extension/xep0313_mam/query/QueryHandler.java => core/src/main/java/org/apache/vysper/xmpp/protocol/StanzaHandlerInterceptorChain.java} (74%) copy server/core/src/main/java/org/apache/vysper/xmpp/server/{StanzaReceivingSessionContext.java => InternalServerRuntimeContext.java} (81%) rename server/core/src/main/java/org/apache/vysper/xmpp/server/{StanzaReceivingSessionContext.java => InternalSessionContext.java} (87%) copy server/{extensions/xep0313-mam/src/test/java/org/apache/vysper/xmpp/modules/extension/xep0313_mam/spi/SimpleEntityFilter.java => core/src/main/java/org/apache/vysper/xmpp/state/resourcebinding/InternalResourceRegistry.java} (52%) create mode 100644 server/core/src/test/java/org/apache/vysper/xmpp/protocol/SimpleStanzaHandlerInterceptorChainTest.java