@@ -1565,7 +1565,7 @@ public AccessTokenProvider getTokenProvider() throws TokenAccessProviderExceptio
15651565 * the AbfsConfiguration with which a filesystem is initialized, and eliminate
15661566 * chances of dynamic modifications and spurious situations.<br>
15671567 * @return sasTokenProvider object based on configurations provided
1568- * @throws AzureBlobFileSystemException
1568+ * @throws AzureBlobFileSystemException if SAS token provider initialization fails
15691569 */
15701570 public SASTokenProvider getSASTokenProvider () throws AzureBlobFileSystemException {
15711571 AuthType authType = getEnum (FS_AZURE_ACCOUNT_AUTH_TYPE_PROPERTY_NAME , AuthType .SharedKey );
@@ -1613,13 +1613,15 @@ public SASTokenProvider getSASTokenProvider() throws AzureBlobFileSystemExceptio
16131613 }
16141614
16151615 /**
1616- * Returns the SASTokenProvider implementation to be used to generate user-bound SAS token.<br>
1616+ * Returns the SASTokenProvider implementation to be used to generate user-bound SAS token.
16171617 * Custom implementation of {@link SASTokenProvider} under th config
1618- * "fs.azure.sas.token.provider.type" needs to be provided.<br>
1618+ * "fs.azure.sas.token.provider.type" needs to be provided.
1619+ * @param authType authentication type
16191620 * @return sasTokenProvider object based on configurations provided
1620- * @throws AzureBlobFileSystemException
1621+ * @throws AzureBlobFileSystemException is user-bound SAS token provider initialization fails
16211622 */
1622- public SASTokenProvider getUserBoundSASTokenProvider (AuthType authType ) throws AzureBlobFileSystemException {
1623+ public SASTokenProvider getUserBoundSASTokenProvider (AuthType authType )
1624+ throws AzureBlobFileSystemException {
16231625
16241626 try {
16251627 Class <? extends SASTokenProvider > customSasTokenProviderImplementation =
0 commit comments