Interface ComponentsResource


public interface ComponentsResource
Version:
$Revision: 1 $
Author:
Bill Burke
  • Method Details

    • query

      @GET @Produces("application/json") List<org.keycloak.representations.idm.ComponentRepresentation> query()
    • query

      @GET @Produces("application/json") List<org.keycloak.representations.idm.ComponentRepresentation> query(@QueryParam("parent") String parent)
    • query

      @GET @Produces("application/json") List<org.keycloak.representations.idm.ComponentRepresentation> query(@QueryParam("parent") String parent, @QueryParam("type") String type)
    • query

      @GET @Produces("application/json") List<org.keycloak.representations.idm.ComponentRepresentation> query(@QueryParam("parent") String parent, @QueryParam("type") String type, @QueryParam("name") String name)
    • add

      @POST @Consumes("application/json") jakarta.ws.rs.core.Response add(org.keycloak.representations.idm.ComponentRepresentation rep)
    • component

      @Path("{id}") ComponentResource component(@PathParam("id") String id)
    • removeComponent

      @Path("{id}") @DELETE ComponentResource removeComponent(@PathParam("id") String id)