Gestion d'identité et SSO
Find a file
Stefan Guilhen 7acf2ceccb Add pagination and search by name capabilities to WorkflowsResource
Closes #44164

Signed-off-by: Stefan Guilhen <sguilhen@redhat.com>
2025-11-12 17:18:11 -03:00
.github Split new base tests into multiple jobs (#44096) 2025-11-12 10:12:32 +01:00
.idea Add Intellij project icon 2023-09-18 12:39:16 +02:00
.mvn Update custom Maven build cache configuration for js directory 2024-12-10 10:07:02 +00:00
adapters Remove wildcard imports (#44060) 2025-11-10 11:46:05 +01:00
authz Remove unused imports as part of #43233 2025-10-13 13:32:01 +02:00
boms Add Spotless plugin with removeUnusedImports check enabled 2025-10-13 13:32:01 +02:00
common Adding utility class for working with throwables and updating the cause check to limit the number of iterations on the stacktrace 2025-11-11 08:48:26 -03:00
core [OID4VCI] Tolerate clock skew in SD-JWT time checks (#43506) 2025-11-11 09:02:44 +01:00
crypto Sd-Jwt unit tests in the crypto/fips1402 module 2025-11-12 15:11:39 +01:00
dependencies Add missing artifact descriptions to allow Maven Central Portal Publisher pass validation process. (#40822) 2025-08-12 16:50:17 +02:00
distribution Fix javadocs missing antlr dependency (#43055) 2025-09-30 09:29:49 +02:00
docs Client policy to enforce only downscoping in Token Exchange (#44030) 2025-11-12 08:48:42 +01:00
federation Adding utility class for working with throwables and updating the cause check to limit the number of iterations on the stacktrace 2025-11-11 08:48:26 -03:00
integration Add pagination and search by name capabilities to WorkflowsResource 2025-11-12 17:18:11 -03:00
js Additional configuration and validation for jwt assertion grant (#44014) 2025-11-10 14:34:06 +01:00
misc Remove wildcard imports (#44060) 2025-11-10 11:46:05 +01:00
model Add operation to deactivate a workflow execution for a resource 2025-11-12 17:02:17 -03:00
operator fix: performing scale down prior to deletion (#44095) 2025-11-11 21:12:50 +00:00
quarkus task: use client v1 logic for v2 impl (#43982) 2025-11-12 15:08:27 +01:00
rest fix: removing unknown field validation parameter (#44173) 2025-11-12 17:27:05 +00:00
saml-core Remove wildcard imports (#44060) 2025-11-10 11:46:05 +01:00
saml-core-api Remove wildcard imports (#44060) 2025-11-10 11:46:05 +01:00
server-spi Adding utility class for working with throwables and updating the cause check to limit the number of iterations on the stacktrace 2025-11-11 08:48:26 -03:00
server-spi-private Add pagination and search by name capabilities to WorkflowsResource 2025-11-12 17:18:11 -03:00
services Add pagination and search by name capabilities to WorkflowsResource 2025-11-12 17:18:11 -03:00
test-framework Test framework support for remote databases (#43609) 2025-11-11 07:59:33 +01:00
tests Add pagination and search by name capabilities to WorkflowsResource 2025-11-12 17:18:11 -03:00
testsuite Missing message properties when rendering pages for organization invites 2025-11-12 15:56:39 -03:00
themes Missing message properties when rendering pages for organization invites 2025-11-12 15:56:39 -03:00
util Remove commons-lang v2 2025-08-14 09:56:02 -03:00
.editorconfig Disable trim_trailing_whitespace in editorconfig 2024-11-07 17:48:17 +01:00
.gitattributes Use lf as line-ending for sh files 2022-07-19 08:57:57 +02:00
.gitignore Git ignore local keycloak state dir 2025-11-03 09:09:22 +00:00
.gitleaks.toml Updated .gitleaks.toml to ignore false positive in RedirectUtilsTest (#33346) 2024-09-27 14:32:36 +02:00
ADOPTERS.md Add Xata to ADOPTERS.md (#40802) 2025-06-30 19:32:32 +02:00
CONTRIBUTING.md Add Spotless plugin with removeUnusedImports check enabled 2025-10-13 13:32:01 +02:00
get-version.sh Use Maven wrapper instead of platform dependent Maven version (#29988) 2024-06-03 15:45:39 +02:00
GOVERNANCE.md Update governance model around changes in maintainership (#29292) 2024-05-22 08:24:10 +02:00
LICENSE.txt Added text version of ASL2 license 2019-11-08 12:43:10 +01:00
MAINTAINERS.md Update maintainers (#43917) 2025-11-05 13:20:40 +01:00
maven-settings.xml [KEYCLOAK-11764] Upgrade to Wildfly 19 2020-04-24 08:19:43 -03:00
mvnw Upgrade Maven and wrapper to latest version 2024-06-19 10:42:33 +02:00
mvnw.cmd Upgrade Maven and wrapper to latest version 2024-06-19 10:42:33 +02:00
pom.xml task: use client v1 logic for v2 impl (#43982) 2025-11-12 15:08:27 +01:00
PR-CHECKLIST.md Introduce CODEOWNERS (#16637) 2023-01-30 13:05:45 +01:00
README.md Add CLOMonitor Badge to the README 2025-02-20 12:31:58 -03:00
SECURITY-INSIGHTS.yml Provide an OpenSSF security insights manifest file 2024-02-15 11:02:33 -03:00
set-version.sh Remove Keycloak JS from repository (#37057) 2025-02-12 16:31:21 +00:00

Keycloak

GitHub Release OpenSSF Best Practices CLOMonitor OpenSSF Scorecard Artifact Hub GitHub Repo stars GitHub commit activity Translation status

Open Source Identity and Access Management

Add authentication to applications and secure services with minimum effort. No need to deal with storing users or authenticating users.

Keycloak provides user federation, strong authentication, user management, fine-grained authorization, and more.

Help and Documentation

Reporting Security Vulnerabilities

If you have found a security vulnerability, please look at the instructions on how to properly report it.

Reporting an issue

If you believe you have discovered a defect in Keycloak, please open an issue. Please remember to provide a good summary, description as well as steps to reproduce the issue.

Getting started

To run Keycloak, download the distribution from our website. Unzip and run:

bin/kc.[sh|bat] start-dev

Alternatively, you can use the Docker image by running:

docker run quay.io/keycloak/keycloak start-dev

For more details refer to the Keycloak Documentation.

Building from Source

To build from source, refer to the building and working with the code base guide.

Testing

To run tests, refer to the running tests guide.

Writing Tests

To write tests, refer to the writing tests guide.

Contributing

Before contributing to Keycloak, please read our contributing guidelines. Participation in the Keycloak project is governed by the CNCF Code of Conduct.

Joining a community meeting is a great way to get involved and help shape the future of Keycloak.

Other Keycloak Projects

License