Class WorkflowsResource

java.lang.Object
org.keycloak.workflow.admin.resource.WorkflowsResource

public class WorkflowsResource extends Object
  • Constructor Details

  • Method Details

    • create

      @POST @Consumes({"application/yaml","application/json"}) public jakarta.ws.rs.core.Response create(WorkflowRepresentation rep)
    • get

      @Path("{id}") public WorkflowResource get(@PathParam("id") String id)
    • list

      @GET @Produces({"application/yaml","application/json"}) public List<WorkflowRepresentation> list(@QueryParam("search") String search, @QueryParam("exact") Boolean exact, @QueryParam("first") @DefaultValue("0") Integer firstResult, @QueryParam("max") @DefaultValue("10") Integer maxResults)
    • getScheduledSteps

      @Path("scheduled/{resource-id}") @GET @Produces("application/json") public List<WorkflowRepresentation> getScheduledSteps(@PathParam("resource-id") String resourceId)