Add request_uri in OAuth2ParameterNames
CI / Build (17, ubuntu-latest) (push) Waiting to run Details
CI / Build (17, windows-latest) (push) Waiting to run Details
CI / Test Against Snapshots (17, 17) (push) Waiting to run Details
CI / Test Against Snapshots (21-ea, 21) (push) Waiting to run Details
CI / Check Samples (push) Waiting to run Details
CI / Deploy Artifacts (push) Blocked by required conditions Details
CI / Deploy Docs (push) Blocked by required conditions Details
CI / Deploy Schema (push) Blocked by required conditions Details
CI / Perform Release (push) Blocked by required conditions Details
CI / Send Notification (push) Blocked by required conditions Details
Deploy Docs / build (push) Waiting to run Details

Closes gh-16947
This commit is contained in:
Joe Grandja 2025-04-16 06:56:15 -04:00
parent ba320fb78d
commit 19090e7873
1 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2023 the original author or authors.
* Copyright 2002-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -230,6 +230,13 @@ public final class OAuth2ParameterNames {
*/
public static final String ACTOR_TOKEN_TYPE = "actor_token_type";
/**
* {@code request_uri} - used in Pushed Authorization Response and Authorization
* Request.
* @since 6.5
*/
public static final String REQUEST_URI = "request_uri";
private OAuth2ParameterNames() {
}