From 04298136b785f6ac76ab777dd1fc05da159b7d06 Mon Sep 17 00:00:00 2001 From: Justin Bertram Date: Mon, 22 Jan 2018 15:01:04 -0600 Subject: [PATCH] ARTEMIS-609 fix interceptor XML docs --- examples/features/standard/interceptor-amqp/readme.md | 4 ++-- examples/features/standard/interceptor-mqtt/readme.md | 4 ++-- examples/features/standard/interceptor/readme.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/features/standard/interceptor-amqp/readme.md b/examples/features/standard/interceptor-amqp/readme.md index 73735b5763..89ab8b043f 100644 --- a/examples/features/standard/interceptor-amqp/readme.md +++ b/examples/features/standard/interceptor-amqp/readme.md @@ -8,13 +8,13 @@ ActiveMQ Artemis allows an application to use an interceptor to hook into the me Once you have your own interceptor class add it to the broker.xml as follows: - + ... org.apache.activemq.artemis.amqp.example.SimpleAmqpInterceptor ... - + With an interceptor you can handle various events in message processing. In this example, a simple interceptor, SimpleAmqpInterceptor, is implemented and configured. When the example is running, the interceptor will display the value of a string property of a sample AMQP message. diff --git a/examples/features/standard/interceptor-mqtt/readme.md b/examples/features/standard/interceptor-mqtt/readme.md index da62c769ae..c6d5627bd7 100644 --- a/examples/features/standard/interceptor-mqtt/readme.md +++ b/examples/features/standard/interceptor-mqtt/readme.md @@ -8,13 +8,13 @@ ActiveMQ Artemis allows an application to use an interceptor to hook into the me Once you have your own interceptor class add it to the broker.xml as follows: - + ... org.apache.activemq.artemis.mqtt.example.SimpleMQTTInterceptor ... - + With an interceptor you can handle various events in message processing. In this example, a simple interceptor, SimpleMQTTInterceptor, is implemented and configured. When the example is running, the interceptor will modify the payload of a sample MQTT message. diff --git a/examples/features/standard/interceptor/readme.md b/examples/features/standard/interceptor/readme.md index 13f2726066..375f82ede0 100644 --- a/examples/features/standard/interceptor/readme.md +++ b/examples/features/standard/interceptor/readme.md @@ -8,13 +8,13 @@ ActiveMQ Artemis allows an application to use an interceptor to hook into the me Once you have your own interceptor class, add it to the broker.xml, as follows: - + ... org.apache.activemq.artemis.jms.example.SimpleInterceptor ... - + With interceptors, you can handle various events in message processing. In this example, a simple interceptor, SimpleInterceptor, is implemented and configured. When the example is running the interceptor will print out each events that are passed in the interceptor. And it will add a string property to the message being delivered. You can see that after the message is received, there will be a new string property appears in the received message.