OAuthClientsResource.java

31 lines | 778 B Blame History Raw Download
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);

}