Package com.azure.identity
Class ChainedTokenCredentialBuilder
java.lang.Object
com.azure.identity.ChainedTokenCredentialBuilder
Fluent credential builder for instantiating a
ChainedTokenCredential
.- See Also:
-
Constructor Summary
ConstructorDescriptionCreates an instance of the builder to config the credential. -
Method Summary
Modifier and TypeMethodDescriptionaddAll
(Collection<? extends TokenCredential> credentials) Adds all of the credentials in the specified collection at the end of this chain, as if by callingaddLast(TokenCredential)
on each one, in the order that they are returned by the collection's iterator.addFirst
(TokenCredential credential) Adds a credential to try to authenticate at the front of the chain.addLast
(TokenCredential credential) Adds a credential to try to authenticate at the last of the chain.build()
Creates a newChainedTokenCredential
with the current configurations.
-
Constructor Details
-
ChainedTokenCredentialBuilder
public ChainedTokenCredentialBuilder()Creates an instance of the builder to config the credential.
-
-
Method Details
-
addFirst
Adds a credential to try to authenticate at the front of the chain.- Parameters:
credential
- the credential to be added to the front of chain- Returns:
- the ChainedTokenCredential itself
-
addLast
Adds a credential to try to authenticate at the last of the chain.- Parameters:
credential
- the credential to be added to the end of chain- Returns:
- the ChainedTokenCredential itself
-
addAll
Adds all of the credentials in the specified collection at the end of this chain, as if by callingaddLast(TokenCredential)
on each one, in the order that they are returned by the collection's iterator.- Parameters:
credentials
- the collection of credentials to be appended to the chain.- Returns:
- An updated instance of the builder.
-
build
Creates a newChainedTokenCredential
with the current configurations.- Returns:
- a
ChainedTokenCredential
with the current configurations.
-