Class IdentityProviderResource


public class IdentityProviderResource extends OrganizationAdminResource
  • Constructor Details

  • Method Details

    • getIdentityProvider

      @GET @Produces("application/json") public org.keycloak.representations.idm.IdentityProviderRepresentation getIdentityProvider()
    • delete

      @DELETE public jakarta.ws.rs.core.Response delete()
    • update

      @PUT @Consumes("application/json") public jakarta.ws.rs.core.Response update(org.keycloak.representations.idm.IdentityProviderRepresentation providerRep)
    • getMappers

      @GET @Path("mappers") @Produces("application/json") public Stream<org.keycloak.representations.idm.IdentityProviderMapperRepresentation> getMappers()
    • addMapper

      @POST @Path("mappers") @Consumes("application/json") public jakarta.ws.rs.core.Response addMapper(org.keycloak.representations.idm.IdentityProviderMapperRepresentation mapper)
    • getMapperById

      @GET @Path("mappers/{id}") @Produces("application/json") public org.keycloak.representations.idm.IdentityProviderMapperRepresentation getMapperById(@PathParam("id") String id)
    • update

      @PUT @Path("mappers/{id}") @Consumes("application/json") public void update(@PathParam("id") String id, org.keycloak.representations.idm.IdentityProviderMapperRepresentation rep)
    • delete

      @DELETE @Path("mappers/{id}") public void delete(@PathParam("id") String id)