update the name of the deletegation method in docs to be correct method name (#1652)

This commit is contained in:
Eric Pugh 2020-07-06 06:35:36 -04:00 committed by GitHub
parent fea6c1b9da
commit 4e20986f89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -342,7 +342,7 @@ SolrJClient {
Delegation tokens are also supported with SolrJ, in the following ways:
* `DelegationTokenRequest` and `DelegationTokenResponse` can be used to get, cancel, and renew delegation tokens.
* `HttpSolrClient.Builder` includes a `withDelegationToken` function for creating an HttpSolrClient that uses a delegation token to authenticate.
* `HttpSolrClient.Builder` includes a `withKerberosDelegationToken` function for creating an HttpSolrClient that uses a delegation token to authenticate.
Sample code to get a delegation token:
@ -366,7 +366,7 @@ To create a `HttpSolrClient` that uses delegation tokens:
[source,java]
----
HttpSolrClient client = new HttpSolrClient.Builder("http://localhost:8983/solr").withDelegationToken(token).build();
HttpSolrClient client = new HttpSolrClient.Builder("http://localhost:8983/solr").withKerberosDelegationToken(token).build();
----
To create a `CloudSolrClient` that uses delegation tokens: