Interface ClientsResource
public interface ClientsResource
- Author:
- rodrigo.sasaki@icarros.com.br
-
Method Summary
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.Responsecreate(org.keycloak.representations.idm.ClientRepresentation clientRepresentation) jakarta.ws.rs.core.ResponseList<org.keycloak.representations.idm.ClientRepresentation>findAll()List<org.keycloak.representations.idm.ClientRepresentation>findAll(boolean viewableOnly) List<org.keycloak.representations.idm.ClientRepresentation>findAll(String clientId, Boolean viewableOnly, Boolean search, Integer firstResult, Integer maxResults) List<org.keycloak.representations.idm.ClientRepresentation>findByClientId(String clientId) List<org.keycloak.representations.idm.ClientRepresentation>
-
Method Details
-
get
-
create
@POST @Consumes("application/json") jakarta.ws.rs.core.Response create(org.keycloak.representations.idm.ClientRepresentation clientRepresentation) -
findAll
@GET @Produces("application/json") List<org.keycloak.representations.idm.ClientRepresentation> findAll() -
findAll
@GET @Produces("application/json") List<org.keycloak.representations.idm.ClientRepresentation> findAll(@QueryParam("viewableOnly") boolean viewableOnly) -
findAll
@GET @Produces("application/json") List<org.keycloak.representations.idm.ClientRepresentation> findAll(@QueryParam("clientId") String clientId, @QueryParam("viewableOnly") Boolean viewableOnly, @QueryParam("search") Boolean search, @QueryParam("first") Integer firstResult, @QueryParam("max") Integer maxResults) -
findByClientId
-
query
-
delete
-