Skip to content

Commit 2932f2d

Browse files
authored
Fixing a java doc comment (#182)
* Javadoc fixes * Setting project source encoding to UTF-8
1 parent edcd804 commit 2932f2d

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

azure-servicebus/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
<artifactId>azure-servicebus-parent</artifactId>
1212
<version>1.2.3-PREVIEW</version>
1313
</parent>
14+
15+
<properties>
16+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
18+
</properties>
1419

1520
<build>
1621
<resources>

azure-servicebus/src/main/java/com/microsoft/azure/servicebus/ClientFactory.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ public static CompletableFuture<IMessageReceiver> createMessageReceiverFromEntit
313313
* @param namespaceName namespace of entity
314314
* @param entityPath path of entity
315315
* @param clientSettings client settings
316-
* @param receiveMode
316+
* @param receiveMode PeekLock or ReceiveAndDelete
317317
* @return a CompletableFuture representing the pending creation of message receiver
318318
*/
319319
public static CompletableFuture<IMessageReceiver> createMessageReceiverFromEntityPathAsync(String namespaceName, String entityPath, ClientSettings clientSettings, ReceiveMode receiveMode) {
@@ -323,9 +323,9 @@ public static CompletableFuture<IMessageReceiver> createMessageReceiverFromEntit
323323

324324
/**
325325
* Asynchronously creates a message receiver to the entity using the client settings in PeekLock mode
326-
* @param namespaceEndpointURI
327-
* @param entityPath
328-
* @param clientSettings
326+
* @param namespaceEndpointURI endpoint uri of entity namespace
327+
* @param entityPath path of entity
328+
* @param clientSettings client settings
329329
* @return a CompletableFuture representing the pending creation of message receiver
330330
*/
331331
public static CompletableFuture<IMessageReceiver> createMessageReceiverFromEntityPathAsync(URI namespaceEndpointURI, String entityPath, ClientSettings clientSettings) {
@@ -334,10 +334,10 @@ public static CompletableFuture<IMessageReceiver> createMessageReceiverFromEntit
334334

335335
/**
336336
* Asynchronously creates a message receiver to the entity using the client settings
337-
* @param namespaceEndpointURI
338-
* @param entityPath
339-
* @param clientSettings
340-
* @param receiveMode
337+
* @param namespaceEndpointURI endpoint uri of entity namespace
338+
* @param entityPath path of entity
339+
* @param clientSettings client settings
340+
* @param receiveMode PeekLock or ReceiveAndDelete
341341
* @return a CompletableFuture representing the pending creation of message receiver
342342
*/
343343
public static CompletableFuture<IMessageReceiver> createMessageReceiverFromEntityPathAsync(URI namespaceEndpointURI, String entityPath, ClientSettings clientSettings, ReceiveMode receiveMode) {

0 commit comments

Comments
 (0)