com.azure.identity.AuthorizationCodeCredentialBuilder Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.identity;
import com.azure.core.util.logging.ClientLogger;
import com.azure.identity.implementation.util.ValidationUtil;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.HashMap;
/**
* Fluent credential builder for instantiating a {@link AuthorizationCodeCredential}.
*
* @see AuthorizationCodeCredential
*/
public class AuthorizationCodeCredentialBuilder extends AadCredentialBuilderBase {
private static final ClientLogger LOGGER = new ClientLogger(AuthorizationCodeCredentialBuilder.class);
private String authCode;
private String redirectUrl;
private String clientSecret;
/**
* Sets the authorization code on the builder.
*
* @param authCode the authorization code acquired from user login
* @return the AuthorizationCodeCredentialBuilder itself
*/
public AuthorizationCodeCredentialBuilder authorizationCode(String authCode) {
this.authCode = authCode;
return this;
}
/**
* Sets redirect URL for the Oauth 2.0 login request, which must be
* registered as a valid redirect URL on the application. The authorization code
* will be sent to this URL, so it must be listening on this server and is able
* to complete the {@link AuthorizationCodeCredential} construction from there.
* This is also called Reply URLs in some contexts.
*
* @param redirectUrl the redirect URL to send the authorization code
* @return the AuthorizationCodeCredentialBuilder itself
*/
public AuthorizationCodeCredentialBuilder redirectUrl(String redirectUrl) {
this.redirectUrl = redirectUrl;
return this;
}
/**
* Sets the client secret for the authentication. This is required for AAD web apps. Do not set this for AAD native
* apps.
*
* @param clientSecret the secret value of the AAD application.
* @return An updated instance of this builder.
*/
public AuthorizationCodeCredentialBuilder clientSecret(String clientSecret) {
this.clientSecret = clientSecret;
return this;
}
/**
* Creates a new {@link AuthorizationCodeCredential} with the current configurations.
*
* @return a {@link AuthorizationCodeCredential} with the current configurations.
*/
public AuthorizationCodeCredential build() {
ValidationUtil.validate(getClass().getSimpleName(), new HashMap() {{
put("clientId", clientId);
put("authorizationCode", authCode);
put("redirectUrl", redirectUrl);
}}, LOGGER);
try {
return new AuthorizationCodeCredential(clientId, clientSecret, tenantId, authCode, new URI(redirectUrl),
identityClientOptions);
} catch (URISyntaxException e) {
throw LOGGER.logExceptionAsError(new RuntimeException(e));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy