public class OIDCClientRegistrationProvider extends AbstractClientRegistrationProvider
auth, event, session
Constructor and Description |
---|
OIDCClientRegistrationProvider(KeycloakSession session) |
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
createOIDC(OIDCClientRepresentation clientOIDC) |
void |
deleteOIDC(String clientId) |
javax.ws.rs.core.Response |
getOIDC(String clientId) |
javax.ws.rs.core.Response |
updateOIDC(String clientId,
OIDCClientRepresentation clientOIDC) |
close, create, delete, get, getAuth, getEvent, setAuth, setEvent, update, validateClient, validateClient
public OIDCClientRegistrationProvider(KeycloakSession session)
@POST @Consumes(value="application/json") @Produces(value="application/json") public javax.ws.rs.core.Response createOIDC(OIDCClientRepresentation clientOIDC)
@GET @Path(value="{clientId}") @Produces(value="application/json") public javax.ws.rs.core.Response getOIDC(@PathParam(value="clientId") String clientId)
@PUT @Path(value="{clientId}") @Consumes(value="application/json") @Produces(value="application/json") public javax.ws.rs.core.Response updateOIDC(@PathParam(value="clientId") String clientId, OIDCClientRepresentation clientOIDC)
@DELETE @Path(value="{clientId}") public void deleteOIDC(@PathParam(value="clientId") String clientId)
Copyright © 2020 JBoss by Red Hat. All rights reserved.