Skip to content

Commit

Permalink
Fixing JavaDoc generation errors. (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
yvgopal authored and jtaubensee committed Apr 4, 2017
1 parent 9f9d4be commit 34cdcaf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public SessionHandlerOptions()

/**
*
* @param maxConcurrentCalls
* @param maxConcurrentSessions
* @param autoComplete
* @param maxAutoRenewDuration - Maximum duration within which the client keeps renewing the session lock if the processing of the session messages or onclose action
* is not completed by the handler.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@

/**
* Authorization failed exception is thrown when error is encountered during authorizing user's permission to run the intended operations.
* When encountered this exception user should check whether the token/key provided in the connection string (e.g. one passed to
* {@link EventHubClient#createFromConnectionStringAsync(String)}) is valid, and has correct execution right for the intended operations (e.g.
* Receive call will need Listen claim associated with the key/token).
* When encountered this exception user should check whether the token/key provided in the connection string is valid, and has correct
* execution right for the intended operations (e.g. Receive call will need Listen claim associated with the key/token).
* @see <a href="http://go.microsoft.com/fwlink/?LinkId=761101">http://go.microsoft.com/fwlink/?LinkId=761101</a>
*/
public class AuthorizationFailedException extends ServiceBusException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private ConnectionStringBuilder(
}

/**
* Build a connection string consumable by {@link EventHubClient#createFromConnectionStringAsync(String)}
* Build a connection string
* @param namespaceName Namespace name (dns suffix - ex: .servicebus.windows.net is not required)
* @param entityPath Entity path. For eventHubs case specify - eventHub name.
* @param sharedAccessKeyName Shared Access Key name
Expand All @@ -123,7 +123,7 @@ public ConnectionStringBuilder(


/**
* Build a connection string consumable by {@link EventHubClient#createFromConnectionStringAsync(String)}
* Build a connection string
* @param endpointAddress namespace level endpoint. This needs to be in the format of scheme://fullyQualifiedServiceBusNamespaceEndpointName
* @param entityPath Entity path. For eventHubs case specify - eventHub name.
* @param sharedAccessKeyName Shared Access Key name
Expand Down

0 comments on commit 34cdcaf

Please sign in to comment.