mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-25 16:42:34 +00:00
add getExecution method to admin resource
This commit is contained in:
@@ -113,6 +113,11 @@ public interface AuthenticationManagementResource {
|
||||
@Consumes(MediaType.APPLICATION_JSON)
|
||||
Response addExecution(AuthenticationExecutionRepresentation model);
|
||||
|
||||
@Path("/executions/{executionId}")
|
||||
@GET
|
||||
@Produces(MediaType.APPLICATION_JSON)
|
||||
AuthenticationExecutionRepresentation getExecution(final @PathParam("executionId") String executionId);
|
||||
|
||||
@Path("/executions/{executionId}/raise-priority")
|
||||
@POST
|
||||
void raisePriority(@PathParam("executionId") String execution);
|
||||
|
||||
Reference in New Issue
Block a user