From 399fe0668f69ff7dcdcba6debdcbd88017b65e6b Mon Sep 17 00:00:00 2001 From: Amit Kumar Mondal Date: Sun, 19 May 2024 15:05:42 +0200 Subject: [PATCH] Updated Attribute Definitions --- .../messaging/mqtt5/provider/MessageClientProvider.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/in.bytehue.messaging.mqtt5.provider/src/main/java/in/bytehue/messaging/mqtt5/provider/MessageClientProvider.java b/in.bytehue.messaging.mqtt5.provider/src/main/java/in/bytehue/messaging/mqtt5/provider/MessageClientProvider.java index b424d65..83b3cfc 100644 --- a/in.bytehue.messaging.mqtt5.provider/src/main/java/in/bytehue/messaging/mqtt5/provider/MessageClientProvider.java +++ b/in.bytehue.messaging.mqtt5.provider/src/main/java/in/bytehue/messaging/mqtt5/provider/MessageClientProvider.java @@ -241,13 +241,13 @@ public final class MessageClientProvider { @AttributeDefinition(name = "QoS 2 Outgoing Interceptor Service Filter") String qos2OutgoingInterceptorFilter() default ""; - @AttributeDefinition(name = "Filter to be satisfied for the client to be active") + @AttributeDefinition(name = "Filter to be satisfied for the messaging client to be active") String osgi_ds_satisfying_condition_target() default "(" + CONDITION_ID + "=" + CONDITION_ID_TRUE + ")"; - @AttributeDefinition(name = "Reason for the disconnection when the component is stopped") + @AttributeDefinition(name = "Reason for the disconnection when the component is stopped gracefully") String disconnectionReasonDescription() default "OSGi Component Deactivated"; - @AttributeDefinition(name = "Code for the disconnection when the component is stopped") + @AttributeDefinition(name = "Code for the disconnection when the component is stopped gracefully") Mqtt5DisconnectReasonCode disconnectionReasonCode() default NORMAL_DISCONNECTION; }