OAuthClientsResource.java
Home
/
integration /
admin-client /
src /
main /
java /
org /
keycloak /
admin /
client /
resource /
OAuthClientsResource.java
package org.keycloak.admin.client.resource;
import org.keycloak.representations.idm.OAuthClientRepresentation;
import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import java.util.List;
/**
* @author rodrigo.sasaki@icarros.com.br
*/
public interface OAuthClientsResource {
@GET
@Produces(MediaType.APPLICATION_JSON)
public List<OAuthClientRepresentation> findAll();
@POST
@Consumes(MediaType.APPLICATION_JSON)
public void create(OAuthClientRepresentation oAuthClientRepresentation);
@Path("{oAuthClientId}")
public OAuthClientResource get(@PathParam("oAuthClientId") String oAuthClientId);
}