Jersey based client implementation of the keycloak administration API. It based on a fork of the keycloak-amdin client implemented with resteasy, which you can find here: https://github.com/keycloak/keycloak/tree/master/integration/admin-client.
For more information, see the documentation: https://www.keycloak.org/docs-api/20.0.0/rest-api/index.html
For a Maven project, add following to pom.xml:
<repositories>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/daniel-schel/keycloak-admin-client-jersey</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-admin-client-jersey</artifactId>
<version>20.0.0</version>
</dependency>
</dependencies>
Authentication is required to use Github Package Registry, see more details: Configuring Apache Maven for use with GitHub Packages
Not every method is fully implemented, so an UnsupportedOperationException is thrown. If you need a specific method, you can make an implementation.