ApplicationsResource.java

33 lines | 762 B Blame History Raw Download
package org.keycloak.admin.client.resource;

import org.keycloak.representations.idm.ApplicationRepresentation;

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 ApplicationsResource {

    @Path("{appName}")
    public ApplicationResource get(@PathParam("appName") String appName);

    @POST
    @Consumes(MediaType.APPLICATION_JSON)
    public void create(ApplicationRepresentation applicationRepresentation);

    @GET
    @Produces(MediaType.APPLICATION_JSON)
    public List<ApplicationRepresentation> findAll();



}