Interface IdentityProviderResource
public interface IdentityProviderResource
- Author:
- pedroigor
-
Method Summary
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.ResponseaddMapper(org.keycloak.representations.idm.IdentityProviderMapperRepresentation mapper) voidjakarta.ws.rs.core.Responseorg.keycloak.representations.idm.IdentityProviderMapperRepresentationgetMapperById(String id) List<org.keycloak.representations.idm.IdentityProviderMapperRepresentation>booleanvoidremove()org.keycloak.representations.idm.IdentityProviderRepresentationvoidvoidupdate(org.keycloak.representations.idm.IdentityProviderRepresentation identityProviderRepresentation)
-
Method Details
-
toRepresentation
@GET @Produces("application/json") org.keycloak.representations.idm.IdentityProviderRepresentation toRepresentation() -
update
@PUT @Consumes("application/json") void update(org.keycloak.representations.idm.IdentityProviderRepresentation identityProviderRepresentation) -
remove
@DELETE void remove() -
export
-
getMapperTypes
-
getMappers
@GET @Path("mappers") @Produces("application/json") List<org.keycloak.representations.idm.IdentityProviderMapperRepresentation> getMappers() -
addMapper
@POST @Path("mappers") @Consumes("application/json") jakarta.ws.rs.core.Response addMapper(org.keycloak.representations.idm.IdentityProviderMapperRepresentation mapper) -
getMapperById
@GET @Path("mappers/{id}") @Produces("application/json") org.keycloak.representations.idm.IdentityProviderMapperRepresentation getMapperById(@PathParam("id") String id) -
update
@PUT @Path("mappers/{id}") @Consumes("application/json") void update(@PathParam("id") String id, org.keycloak.representations.idm.IdentityProviderMapperRepresentation rep) -
delete
-
reloadKeys
@GET @Path("reload-keys") boolean reloadKeys()
-