Skip to content

Commit b559230

Browse files
committed
chore: formatter docs
Signed-off-by: Marcos Tischer Vallim <tischer@gmail.com>
1 parent 6ab8938 commit b559230

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

amazon-sns-java-messaging-lib-v2/src/main/java/com/amazon/sns/messaging/lib/core/AmazonSnsTemplate.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ public static <E> Builder<SnsClient, PublishBatchRequest, PublishBatchResponse,
7878
* Creates a new v2 SNS template with default settings.
7979
*
8080
* @deprecated since 1.3.0, use {@link #builder(SnsClient, TopicProperty)} instead
81+
*
8182
* @param amazonSnsClient the v2 {@link SnsClient}
8283
* @param topicProperty the topic configuration
8384
*/
@@ -92,6 +93,7 @@ public AmazonSnsTemplate(
9293
* Creates a new v2 SNS template with a custom publish decorator.
9394
*
9495
* @deprecated since 1.3.0, use {@link #builder(SnsClient, TopicProperty)} and {@link Builder#publishDecorator(UnaryOperator)} instead
96+
*
9597
* @param amazonSnsClient the v2 {@link SnsClient}
9698
* @param topicProperty the topic configuration
9799
* @param publishDecorator a decorator for the publish batch request
@@ -108,6 +110,7 @@ public AmazonSnsTemplate(
108110
* Creates a new v2 SNS template with a custom topic request queue.
109111
*
110112
* @deprecated since 1.3.0, use {@link #builder(SnsClient, TopicProperty)} and {@link Builder#topicRequests(BlockingQueue)} instead
113+
*
111114
* @param amazonSnsClient the v2 {@link SnsClient}
112115
* @param topicProperty the topic configuration
113116
* @param topicRequests the blocking queue for topic requests
@@ -124,6 +127,7 @@ public AmazonSnsTemplate(
124127
* Creates a new v2 SNS template with a custom queue and publish decorator.
125128
*
126129
* @deprecated since 1.3.0, use {@link #builder(SnsClient, TopicProperty)} with {@link Builder#topicRequests(BlockingQueue)} and {@link Builder#publishDecorator(UnaryOperator)} instead
130+
*
127131
* @param amazonSnsClient the v2 {@link SnsClient}
128132
* @param topicProperty the topic configuration
129133
* @param topicRequests the blocking queue for topic requests
@@ -142,6 +146,7 @@ public AmazonSnsTemplate(
142146
* Creates a new v2 SNS template with a custom ObjectMapper.
143147
*
144148
* @deprecated since 1.3.0, use {@link #builder(SnsClient, TopicProperty)} and {@link Builder#objectMapper(ObjectMapper)} instead
149+
*
145150
* @param amazonSnsClient the v2 {@link SnsClient}
146151
* @param topicProperty the topic configuration
147152
* @param objectMapper the Jackson ObjectMapper for payload serialization
@@ -158,6 +163,7 @@ public AmazonSnsTemplate(
158163
* Creates a new v2 SNS template with a custom ObjectMapper and publish decorator.
159164
*
160165
* @deprecated since 1.3.0, use {@link #builder(SnsClient, TopicProperty)} with {@link Builder#objectMapper(ObjectMapper)} and {@link Builder#publishDecorator(UnaryOperator)} instead
166+
*
161167
* @param amazonSnsClient the v2 {@link SnsClient}
162168
* @param topicProperty the topic configuration
163169
* @param objectMapper the Jackson ObjectMapper for payload serialization
@@ -176,6 +182,7 @@ public AmazonSnsTemplate(
176182
* Creates a new v2 SNS template with a custom queue and ObjectMapper.
177183
*
178184
* @deprecated since 1.3.0, use {@link #builder(SnsClient, TopicProperty)} with {@link Builder#topicRequests(BlockingQueue)} and {@link Builder#objectMapper(ObjectMapper)} instead
185+
*
179186
* @param amazonSnsClient the v2 {@link SnsClient}
180187
* @param topicProperty the topic configuration
181188
* @param topicRequests the blocking queue for topic requests
@@ -194,6 +201,7 @@ public AmazonSnsTemplate(
194201
* Creates a new v2 SNS template with full custom configuration.
195202
*
196203
* @deprecated since 1.3.0, use {@link #builder(SnsClient, TopicProperty)} with builder setters instead
204+
*
197205
* @param amazonSnsClient the v2 {@link SnsClient}
198206
* @param topicProperty the topic configuration
199207
* @param topicRequests the blocking queue for topic requests

0 commit comments

Comments
 (0)