Interface WorkflowResource


public interface WorkflowResource
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    bind(String type, String resourceId)
     
    void
    bind(String type, String resourceId, Long milliseconds)
     
    jakarta.ws.rs.core.Response
     
     
    org.keycloak.representations.workflows.WorkflowRepresentation
     
    jakarta.ws.rs.core.Response
    update(org.keycloak.representations.workflows.WorkflowRepresentation workflow)
     
  • Method Details

    • delete

      @DELETE jakarta.ws.rs.core.Response delete()
    • update

      @PUT @Consumes("application/json") jakarta.ws.rs.core.Response update(org.keycloak.representations.workflows.WorkflowRepresentation workflow)
    • toRepresentation

      @GET @Produces("application/json") org.keycloak.representations.workflows.WorkflowRepresentation toRepresentation()
    • bind

      @Path("bind/{type}/{resourceId}") @POST @Consumes("application/json") void bind(@PathParam("type") String type, @PathParam("resourceId") String resourceId)
    • bind

      @Path("bind/{type}/{resourceId}") @POST @Consumes("application/json") void bind(@PathParam("type") String type, @PathParam("resourceId") String resourceId, Long milliseconds)
    • steps

      @Path("steps") WorkflowStepsResource steps()