forked from keycloak/keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Keycloak 10489 support for client secret rotation (keycloak#10603)
Closes keycloak#10602
- Loading branch information
1 parent
fd2cd68
commit 7335aba
Showing
27 changed files
with
1,820 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
server-spi-private/src/main/java/org/keycloak/models/ClientSecretConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package org.keycloak.models; | ||
|
||
/** | ||
* @author <a href="mailto:masales@redhat.com">Marcelo Sales</a> | ||
*/ | ||
public class ClientSecretConstants { | ||
|
||
// client attribute names | ||
public static final String CLIENT_SECRET_ROTATION_ENABLED = "client.secret.rotation.enabled"; | ||
public static final String CLIENT_SECRET_CREATION_TIME = "client.secret.creation.time"; | ||
public static final String CLIENT_SECRET_EXPIRATION = "client.secret.expiration.time"; | ||
public static final String CLIENT_ROTATED_SECRET = "client.secret.rotated"; | ||
public static final String CLIENT_ROTATED_SECRET_CREATION_TIME = "client.secret.rotated.creation.time"; | ||
public static final String CLIENT_ROTATED_SECRET_EXPIRATION_TIME = "client.secret.rotated.expiration.time"; | ||
public static final String CLIENT_SECRET_REMAINING_EXPIRATION_TIME = "client.secret.remaining.expiration.time"; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.