Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ public Map<String, String> extraHttpHeaders() {
return this.extraHttpHeaders;
}

/**
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public Map<String, String> extraQueryParameters() {
return this.extraQueryParameters;
}
Expand Down Expand Up @@ -173,7 +177,9 @@ public AuthorizationCodeParametersBuilder extraHttpHeaders(Map<String, String> e

/**
* Adds additional query parameters to the token request
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public AuthorizationCodeParametersBuilder extraQueryParameters(Map<String, String> extraQueryParameters) {
this.extraQueryParameters = extraQueryParameters;
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,10 @@ public boolean instanceAware() {
return this.instanceAware;
}

/**
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public Map<String, String> extraQueryParameters() {
return this.extraQueryParameters;
}
Expand Down Expand Up @@ -419,7 +423,9 @@ public Builder instanceAware(boolean val) {
/**
* Query parameters that you can add to the request,
* in addition to the list of parameters already provided.
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public Builder extraQueryParameters(Map<String, String> val) {
this.extraQueryParameters = val;
return self();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ public Map<String, String> extraHttpHeaders() {
return this.extraHttpHeaders;
}

/**
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public Map<String, String> extraQueryParameters() {
return this.extraQueryParameters;
}
Expand Down Expand Up @@ -134,7 +138,9 @@ public ClientCredentialParametersBuilder extraHttpHeaders(Map<String, String> ex

/**
* Adds additional query parameters to the token request
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public ClientCredentialParametersBuilder extraQueryParameters(Map<String, String> extraQueryParameters) {
this.extraQueryParameters = extraQueryParameters;
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ public Map<String, String> extraHttpHeaders() {
return this.extraHttpHeaders;
}

/**
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public Map<String, String> extraQueryParameters() {
return this.extraQueryParameters;
}
Expand Down Expand Up @@ -135,7 +139,9 @@ public DeviceCodeFlowParametersBuilder extraHttpHeaders(Map<String, String> extr

/**
* Adds additional query parameters to the token request
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public DeviceCodeFlowParametersBuilder extraQueryParameters(Map<String, String> extraQueryParameters) {
this.extraQueryParameters = extraQueryParameters;
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ interface IAcquireTokenParameters {
* This can be useful for scenarios requiring custom parameters that aren't explicitly supported in the library.
*
* @return A map of additional query parameters to include with the token request, or null if no extra parameters are needed.
*
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
Map<String, String> extraQueryParameters();
}
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ public Map<String, String> extraHttpHeaders() {
return this.extraHttpHeaders;
}

/**
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public Map<String, String> extraQueryParameters() {
return this.extraQueryParameters;
}
Expand Down Expand Up @@ -129,7 +133,9 @@ public IntegratedWindowsAuthenticationParametersBuilder extraHttpHeaders(Map<Str

/**
* Adds additional parameters to the token request
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public IntegratedWindowsAuthenticationParametersBuilder extraQueryParameters(Map<String, String> extraQueryParameters) {
this.extraQueryParameters = extraQueryParameters;
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ public Map<String, String> extraHttpHeaders() {
return this.extraHttpHeaders;
}

/**
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public Map<String, String> extraQueryParameters() {
return this.extraQueryParameters;
}
Expand Down Expand Up @@ -262,7 +266,9 @@ public InteractiveRequestParametersBuilder extraHttpHeaders(Map<String, String>

/**
* Adds additional query parameters to the token request
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public InteractiveRequestParametersBuilder extraQueryParameters(Map<String, String> extraQueryParameters) {
this.extraQueryParameters = extraQueryParameters;
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ public Map<String, String> extraHttpHeaders() {
return this.extraHttpHeaders;
}

/**
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public Map<String, String> extraQueryParameters() {
return this.extraQueryParameters;
}
Expand Down Expand Up @@ -136,7 +140,9 @@ public OnBehalfOfParametersBuilder extraHttpHeaders(Map<String, String> extraHtt

/**
* Adds additional parameters to the token request
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public OnBehalfOfParametersBuilder extraQueryParameters(Map<String, String> extraQueryParameters) {
this.extraQueryParameters = extraQueryParameters;
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ public Map<String, String> extraHttpHeaders() {
return this.extraHttpHeaders;
}

/**
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public Map<String, String> extraQueryParameters() {
return this.extraQueryParameters;
}
Expand Down Expand Up @@ -133,7 +137,9 @@ public RefreshTokenParametersBuilder extraHttpHeaders(Map<String, String> extraH

/**
* Adds additional parameters to the token request
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public RefreshTokenParametersBuilder extraQueryParameters(Map<String, String> extraQueryParameters) {
this.extraQueryParameters = extraQueryParameters;
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ public Map<String, String> extraHttpHeaders() {
return this.extraHttpHeaders;
}

/**
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public Map<String, String> extraQueryParameters() {
return this.extraQueryParameters;
}
Expand Down Expand Up @@ -215,7 +219,9 @@ public SilentParametersBuilder extraHttpHeaders(Map<String, String> extraHttpHea

/**
* Adds additional query parameters to the token request
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public SilentParametersBuilder extraQueryParameters(Map<String, String> extraQueryParameters) {
this.extraQueryParameters = extraQueryParameters;
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ public Map<String, String> extraHttpHeaders() {
return this.extraHttpHeaders;
}

/**
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public Map<String, String> extraQueryParameters() {
return this.extraQueryParameters;
}
Expand Down Expand Up @@ -180,7 +184,9 @@ public UserNamePasswordParametersBuilder extraHttpHeaders(Map<String, String> ex

/**
* Adds additional query parameters to the token request
* @deprecated Not recommended for production scenarios. It will be removed in a future release, and the behavior may be replaced by a new API.
*/
@Deprecated
public UserNamePasswordParametersBuilder extraQueryParameters(Map<String, String> extraQueryParameters) {
this.extraQueryParameters = extraQueryParameters;
return this;
Expand Down
Loading