Interface RealmsResource


@Path("/admin/realms") @Consumes("application/json") public interface RealmsResource
Author:
rodrigo.sasaki@icarros.com.br
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    create(org.keycloak.representations.idm.RealmRepresentation realmRepresentation)
     
    List<org.keycloak.representations.idm.RealmRepresentation>
     
    realm(String realm)
     
  • Method Details

    • realm

      @Path("/{realm}") RealmResource realm(@PathParam("realm") String realm)
    • create

      @POST @Consumes("application/json") void create(org.keycloak.representations.idm.RealmRepresentation realmRepresentation)
    • findAll

      @GET @Produces("application/json") List<org.keycloak.representations.idm.RealmRepresentation> findAll()